JSFiddle - React, Tailwind, and code Playground

by chikunova_nata

HTML

<script src="https://code.angularjs.org/1.4.0/angular.js"></script>
<script src="https://code.angularjs.org/1.4.0/angular-mocks.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.0/lodash.min.js"></script>

<body ng-app="httpExample">
  <div ng-controller="FetchController">
    <p>FILE:
      <input type="file" id="file" ng-file-select="onFileSelect($files)" />
    </p>
    <p>URL:
      <input type="text" ng-model="url" size="80" aria-label="URL" />
    </p>
    <p>
      <button id="fetchbtn" ng-click="fetch()">send request</button>
    </p>
  </div>
</body>

JavaScript

angular.module('httpExample', [])
.controller('FetchController', function ($scope) {
alert('1');
});