A simple file sharing site with an easy to use API and online panel.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
484B

  1. var angular = require('angular');
  2. var uirouter = require('angular-ui-router');
  3. var chart = require('angular-chart.js');
  4. var app = angular.module('shrimpa-panel', ['ui.router', 'AuthSvc', 'KeySvc', 'InviteSvc', 'UserSvc', 'StatSvc', 'KeyCtrl', 'InviteCtrl', 'UserCtrl', 'NavCtrl', 'DashCtrl', 'PanelRoutes']);
  5. app.run(['$rootScope', '$state', '$stateParams', function($rootScope, $state, $stateParams) {
  6. $rootScope.$state = $state;
  7. $rootScope.$stateParams = $stateParams;
  8. }]);