errorCtrl.js 405 B

123456789
  1. 'use strict';
  2. /**
  3. * Clip-Two Main Controller
  4. */
  5. app.controller('errorCtrl', ['$rootScope', '$scope', '$state', '$stateParams', '$window', '$timeout', '$filter', 'Restangular', 'api_login', 'api_text', 'api_user_data',
  6. function($rootScope, $scope, $state, $stateParams, $window, $timeout, $filter, Restangular, api_login, api_text, api_user_data) {
  7. console.log('errorCtrl loading');
  8. }
  9. ]);