Skip to content

Commit 2d90259

Browse files
author
Chad Roberts
authored
Style refactoring to elininate jshint warnings. (#62)
Fixing up files to honor .jshintrc. Removing .jscsrc as it's not used by anything.
1 parent bc6e5fa commit 2d90259

9 files changed

+530
-498
lines changed

.jscsrc

-6
This file was deleted.

.jshintrc

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
{
2-
"bitwise": true,
2+
"node": true,
33
"browser": true,
4+
"esnext": true,
5+
"bitwise": true,
6+
"camelcase": false,
47
"curly": true,
58
"eqeqeq": true,
6-
"esnext": true,
7-
"latedef": true,
9+
"expr" : true,
10+
"immed": true,
11+
"indent": 2,
12+
"latedef": false,
13+
"newcap": false,
814
"noarg": true,
9-
"node": true,
15+
"quotmark": false,
16+
"smarttabs": true,
1017
"strict": true,
18+
"sub" : true,
1119
"undef": true,
1220
"unused": true,
1321
"globals": {

app/js/app.js

+25-23
Original file line numberDiff line numberDiff line change
@@ -9,38 +9,40 @@
99

1010

1111
var app = angular.module('Oshinko', [
12-
'ngRoute',
13-
'Oshinko.controllers',
14-
'Oshinko.factories'
12+
'ngRoute',
13+
'Oshinko.controllers',
14+
'Oshinko.factories'
1515
]);
1616

1717
app.config(['$routeProvider', function ($routeProvider) {
18-
$routeProvider.when('/clusters/:Id?',
19-
{
20-
templateUrl: function(params) {
21-
if(!params['Id'])
22-
return 'partials/clusters.html';
23-
else
24-
return 'partials/cluster-detail.html';
25-
},
26-
controller: 'ClusterCtrl',
27-
activetab: 'clusters'
28-
});
29-
$routeProvider.when('/login',
30-
{
31-
templateUrl: 'partials/login.html',
32-
controller: 'LoginController',
33-
activetab: ''
34-
});
35-
$routeProvider.otherwise({redirectTo: '/clusters'});
18+
$routeProvider.when('/clusters/:Id?',
19+
{
20+
templateUrl: function (params) {
21+
if (!params.Id) {
22+
return 'partials/clusters.html';
23+
}
24+
else {
25+
return 'partials/cluster-detail.html';
26+
}
27+
},
28+
controller: 'ClusterCtrl',
29+
activetab: 'clusters'
30+
});
31+
$routeProvider.when('/login',
32+
{
33+
templateUrl: 'partials/login.html',
34+
controller: 'LoginController',
35+
activetab: ''
36+
});
37+
$routeProvider.otherwise({redirectTo: '/clusters'});
3638
}]);
3739

3840
app.run(function ($http) {
3941
window.__env = {};
4042
$http.get('/config/refresh').success(function (result) {
4143
window.__env.refresh_interval = result;
42-
}).error(function(error) {
43-
console.log("Unable to fetch refresh interval, using default of 5");
44+
}).error(function (error) {
45+
console.log("Unable to fetch refresh interval, using default of 5. " + error);
4446
window.__env.refresh_interval = 5;
4547
});
4648
});

0 commit comments

Comments
 (0)