JSFiddle - React, Tailwind, and code Playground

by provegard

HTML

<script src="https://code.angularjs.org/1.6.1/angular.js"></script>
<div>
  <p>This is shown</p>
  <div ng-if="showThings">
    <div ng-controller="MyCtrl">
      <select ng-options="item as item for item in getItems()" ng-model="whatever">
      </select>
    </div>
  </div>
</div>

JavaScript

angular
  .module("myApp", [])
  .controller("MyCtrl", function ($scope) {
    $scope.getItems = function () {
      window.alert("Why was I called??");
      return [];
    }
  })
	;