JSFiddle - React, Tailwind, and code Playground

ng-1.5.8: components for config table

by nickadeemus2002

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.8/angular.min.js"></script>

JavaScript

var dashboardApp = angular.module('DashboardApp', []);
dashboardApp.controller('DashboardController', DashboardController);

DashboardController.$inject(['$window', '$scope']);

function DashboardController($window, $scope){

console.log($window);
console.log($scope);
}