Commit 9835dbe3ed9cd206d661a1fe2be29fa34a6bad8e
1 parent
988ec12e44
Exists in
master
module name changes
Showing
20 changed files
with
28 additions
and
33 deletions
Show diff stats
app/index.html
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
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
app/views/fbo-Clients/fboClient.controller.js
app/views/fbo-Clients/fboClient.service.js
app/views/fbo-admin/dashboard.controller.js
app/views/fbo-admin/dashboard.service.js
app/views/fbo-flight/flightDept.controller.js
app/views/fbo-flight/flightDeptService.js
app/views/login/login.controller.js
app/views/login/login.service.js
app/views/update-airports/updateAirportController.js
app/views/update-airports/updateAirportService.js
app/views/updateAllFBO/updateAllFBO.controller.js
app/views/updateAllFBO/updateAllFBO.service.js