Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 5a82cd9

Browse files
chore(config): update to Angular 1.5
1 parent cd9fd58 commit 5a82cd9

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

app/scripts/factories/Google3CardFactory.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ app.factory('createGoogle3Card', [
1515
app.inherits(Google3CardViewModel, createCard);
1616

1717
Google3CardViewModel.prototype.update = function(count) {
18+
console.log(count);
1819
this.content = count;
1920

2021
if (count > 50) {

app/scripts/services/configService.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ var angularJsConfig = {
1818
jenkinsProjectId: 'angular.js-angular-v1.4.x'
1919
},
2020
legacy: {
21-
title: 'legacy/1.3',
22-
name: 'v1.3.x',
23-
g3Name: 'g3_v1_3',
24-
releaseTag: 'v1.3',
25-
jenkinsProjectId: 'angular.js-angular-v1.3.x'
21+
title: 'legacy/1.4',
22+
name: 'v1.4.x',
23+
g3Name: 'g3_v1_4',
24+
releaseTag: 'v1.4',
25+
jenkinsProjectId: 'angular.js-angular-v1.4.x'
2626
}
2727
}
2828
};

app/scripts/services/githubService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ angular.module('github', ['config'])
168168
return data;
169169
},
170170
function error() {
171-
return JSON.parse(localStorage[cacheKey] || '', parseDateReviver);
171+
return JSON.parse(localStorage[cacheKey] || '"-"', parseDateReviver);
172172
}
173173
);
174174
};

0 commit comments

Comments
 (0)