Skip to content

Commit 04a90a6

Browse files
committed
removed lint errors 4
1 parent 8b90423 commit 04a90a6

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

app/app-config.js

+16-17
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
'ngStorage',
88
'ngResource'
99
])
10-
.config(config);
10+
.config(config);
1111

1212
// safe dependency injection
1313
// this prevents minification issues
@@ -45,17 +45,18 @@
4545
url: '/home',
4646
templateUrl: 'views/partial-home.html'
4747
})
48-
.state('home.libs', {
49-
url: '/libs',
50-
templateUrl: 'views/partial-home-list.html',
51-
controller: 'ListController'
52-
})
53-
54-
// nested list with just some random string data
55-
.state('home.usage', {
56-
url: '/usage',
57-
template: '<h4>Use this recipy to quickly start a production level development.<br>Also helpful for beginners who wish to understand the basic digest system of angularJS and how to accelerate the development and building tasks with task automation.<br><br>You are free to modify, distribute and sell.</h4>'
58-
})
48+
.state('home.libs', {
49+
url: '/libs',
50+
templateUrl: 'views/partial-home-list.html',
51+
controller: 'ListController'
52+
})
53+
54+
// nested list with just some random string data
55+
.state('home.usage', {
56+
url: '/usage',
57+
// eslint-disable-next-line max-len
58+
template: '<h4>Use this recipy to quickly start a production level development.<br>Also helpful for beginners who wish to understand the basic digest system of angularJS and how to accelerate the development and building tasks with task automation.<br><br>You are free to modify, distribute and sell.</h4>'
59+
})
5960

6061
// ABOUT PAGE AND MULTIPLE NAMED VIEWS =================================
6162
.state('about', {
@@ -65,18 +66,17 @@
6566
templateUrl: 'views/partial-about.html'
6667
},
6768
'columnOne@about': {
69+
// eslint-disable-next-line max-len
6870
template: '<p style="padding-top: 25px;">Those who are new to angularJS they must have a question in mind, "How to run the angular properly?"<br><br>Well, this tiny gulp tool built on NodeJS can run the angular source in the browser and watch for file changes while you are developing.<br>When you are deploying the project, you can just minify the source to prevent you source from being stolen as well as reduce the build size remarkably.</p>'
6971
},
70-
'columnTwo@about': {
72+
'columnTwo@about': {
7173
templateUrl: 'views/table-data.html',
7274
controller: 'CommandController'
7375
}
7476
}
7577
});
7678
}
7779

78-
79-
8080
/**
8181
* Run block
8282
* Runs first after launching
@@ -87,8 +87,7 @@
8787
run.$inject = ['$rootScope', '$state'];
8888

8989
function run($rootScope, $state) {
90-
91-
90+
// put here everything that you need to run on page reload
9291
}
9392

9493

0 commit comments

Comments
 (0)