Commit 9835dbe3ed9cd206d661a1fe2be29fa34a6bad8e

Authored by Rishav
1 parent 988ec12e44
Exists in master

module name changes

1   -<!--
2   -* INSPINIA - Responsive Admin Theme
3   -* Version 2.7
4   -*
5   --->
6 1  
7 2 <!DOCTYPE html>
8   -<html ng-app="inspinia">
  3 +<html ng-app="acuefuel">
9 4  
10 5 <head>
11 6  
... ... @@ -32,7 +27,7 @@
32 27 <!-- Toastr -->
33 28 <link href="bower_components/toastr/toastr.min.css" rel="stylesheet">
34 29  
35   - <!-- Main Inspinia CSS files -->
  30 + <!-- Main Acuefuel CSS files -->
36 31 <!-- endbower -->
37 32 <!-- endbuild -->
38 33  
... ... @@ -48,7 +43,7 @@
48 43 </head>
49 44  
50 45 <!-- ControllerAs syntax -->
51   -<!-- Main controller with serveral data used in Inspinia theme on diferent view -->
  46 +<!-- Main controller with serveral data used in Acuefuel theme on diferent view -->
52 47 <body>
53 48  
54 49 <!-- Main view -->
... ...
app/scripts/app.js
1 1 /**
2   - * INSPINIA - Responsive Admin Theme
  2 + * acuefuel - Responsive Admin Theme
3 3 *
4 4 */
5 5 (function () {
6   - angular.module('inspinia', [
  6 + angular.module('acuefuel', [
7 7 'ngCookies', // angular-cookies
8 8 'ngResource', //angular resouce
9 9 'ngAnimate', // angular animate
... ...
app/scripts/config.js
1 1 /**
2   - * INSPINIA - Responsive Admin Theme
  2 + * Acuefuel - Responsive Admin Theme
3 3 *
4   - * Inspinia theme use AngularUI Router to manage routing and views
  4 + * Acuefuel theme use AngularUI Router to manage routing and views
5 5 * Each view are defined as state.
6 6 * Initial there are written stat for all view in theme.
7 7 *
... ... @@ -55,7 +55,7 @@ function config($stateProvider, $urlRouterProvider) {
55 55 })
56 56 }
57 57 angular
58   - .module('inspinia')
  58 + .module('acuefuel')
59 59 .config(config)
60 60 .run(function($rootScope, $state) {
61 61 $rootScope.$state = $state;
... ...
app/scripts/constant.js
1 1  
2 2 'use strict';
3 3  
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5  
6 6 .constant('BE', {
7 7 url: 'http://54.149.169.33:8080/ws'
... ...
app/scripts/controllers.js
1 1 /**
2   - * INSPINIA - Responsive Admin Theme
  2 + * acuefuel - Responsive Admin Theme
3 3 *
4 4 */
5 5  
... ... @@ -16,5 +16,5 @@ function MainCtrl($scope, $location) {
16 16  
17 17  
18 18 angular
19   - .module('inspinia')
  19 + .module('acuefuel')
20 20 .controller('MainCtrl', MainCtrl)
21 21 \ No newline at end of file
... ...
app/scripts/directives.js
1 1 /**
2   - * INSPINIA - Responsive Admin Theme
  2 + * acuefuel - Responsive Admin Theme
3 3 *
4 4 */
5 5  
... ... @@ -12,7 +12,7 @@ function pageTitle($rootScope, $timeout) {
12 12 link: function(scope, element) {
13 13 var listener = function(event, toState, toParams, fromState, fromParams) {
14 14 // Default title - load on Dashboard 1
15   - var title = 'INSPINIA | Responsive Admin Theme';
  15 + var title = 'Acuefuel';
16 16 // Create your own title pattern
17 17 if (toState.data && toState.data.pageTitle) title = 'INSPINIA | ' + toState.data.pageTitle;
18 18 $timeout(function() {
... ... @@ -172,7 +172,7 @@ function iboxToolsFullScreen($timeout) {
172 172 * Pass all functions into module
173 173 */
174 174 angular
175   - .module('inspinia')
  175 + .module('acuefuel')
176 176 .directive('pageTitle', pageTitle)
177 177 .directive('sideNavigation', sideNavigation)
178 178 .directive('iboxTools', iboxTools)
... ...
app/scripts/inspinia.js
1 1 /**
2   - * INSPINIA - Responsive Admin Theme
  2 + * Acuefuel - Responsive Admin Theme
3 3 * 2.7
4 4 *
5 5 * Custom scripts
... ...
app/views/fbo-Clients/fboClient.controller.js
1 1 'use strict';
2 2  
3 3 //Load controller
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5  
6 6 .controller('fboClientsController', function($scope, $stateParams, FBOClient) {
7 7 $(document).ready(function(){
... ...
app/views/fbo-Clients/fboClient.service.js
1 1 (function() {
2 2 'use strict';
3 3  
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5 .service('FBOClient', ['$rootScope', '$q', '$http', 'BE', FBOClient])
6 6  
7 7 function FBOClient($rootScope, $q, $http, BE) {
... ...
app/views/fbo-admin/dashboard.controller.js
1 1 'use strict';
2 2  
3 3 //Load controller
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5  
6 6 .controller('DashboardController', function($scope, FBOAdmin) {
7 7 $(document).ready(function(){
... ...
app/views/fbo-admin/dashboard.service.js
1 1 (function() {
2 2 'use strict';
3 3  
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5 .service('FBOAdmin', ['$rootScope', '$q', '$http', 'BE', FBOAdmin])
6 6  
7 7 function FBOAdmin($rootScope, $q, $http, BE) {
... ...
app/views/fbo-flight/flightDept.controller.js
1 1 'use strict';
2 2  
3 3 //Load controller
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5  
6 6 .controller('FlightDeptController', function ($scope, FBOFlight) {
7 7 $scope.data = {};
... ...
app/views/fbo-flight/flightDeptService.js
1 1 (function() {
2 2 'use strict';
3 3  
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5 .service('FBOFlight', ['$rootScope', '$q', '$http', 'BE', FBOFlight])
6 6  
7 7 function FBOFlight($rootScope, $q, $http, BE) {
... ...
app/views/login/login.controller.js
1 1 'use strict';
2 2  
3 3 //Load controller
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5  
6 6 .controller('LoginController', function ($scope, $state, LoginService) {
7 7  
... ...
app/views/login/login.service.js
1 1 (function() {
2 2 'use strict';
3 3  
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5 .service('LoginService', ['$rootScope', '$q', '$http', 'BE', LoginService])
6 6  
7 7 function LoginService($rootScope, $q, $http, BE) {
... ...
app/views/update-airports/updateAirportController.js
1 1 'use strict';
2 2  
3   -angular.module('inspinia')
  3 +angular.module('acuefuel')
4 4  
5 5 .controller('updateAirportController', function ($scope, UpdateAirportService) {
6 6 $scope.dropName = true;
... ...
app/views/update-airports/updateAirportService.js
1 1 (function() {
2 2 'use strict';
3 3  
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5 .service('UpdateAirportService', ['$rootScope', '$q', '$http', 'BE', UpdateAirportService])
6 6  
7 7 function UpdateAirportService($rootScope, $q, $http, BE) {
... ...
app/views/updateAllFBO/updateAllFBO.controller.js
1 1 'use strict';
2 2  
3 3 //Load controller
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5  
6 6 .controller('updateAllFBOController', function($scope, $stateParams, UpdateAllFBO) {
7 7 $(document).ready(function(){
... ...
app/views/updateAllFBO/updateAllFBO.service.js
1 1 (function() {
2 2 'use strict';
3 3  
4   - angular.module('inspinia')
  4 + angular.module('acuefuel')
5 5 .service('UpdateAllFBO', ['$rootScope', '$q', '$http', 'BE', UpdateAllFBO])
6 6  
7 7 function UpdateAllFBO($rootScope, $q, $http, BE) {
... ...
1 1 {
2   - "name": "ADMIN ACUFUEL",
  2 + "name": "adminAcufuel",
3 3 "version": "2.7.0",
4 4 "description": "ADMIN ACUFUEL DASHBOARD",
5 5 "dependencies": {
... ...