Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 123d198

Browse files
author
Jenkins Continuous Integration Server
committedJan 22, 2016
Merge commit '53609821817117752f5100c5b7fbf36a154b2b22' into HEAD
2 parents 3398e5a + 5360982 commit 123d198

File tree

5 files changed

+19
-17
lines changed

5 files changed

+19
-17
lines changed
 

‎app/community/members.controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
ctrl.notSearch = true;
1111
ctrl.showing = 'list';
1212
ctrl.domain = CONSTANTS.domain;
13-
ctrl.currentMonth = 'November 2015';
13+
ctrl.currentMonth = 'December 2015';
1414
ctrl.memberLeaderboard = [];
1515
ctrl.copilots = [];
1616
CommunityDataService.getMembersData()

‎app/directives/tc-form-fonts/tc-form-fonts.spec.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ describe('Topcoder Form Fonts Directive', function() {
66
bard.appModule('topcoder');
77
bard.inject(this, '$compile', '$rootScope');
88
scope = $rootScope.$new();
9+
scope.formFonts = [];
910

10-
var form = angular.element('<form><tc-form-fonts /></form>');
11+
var form = angular.element('<form><tc-form-fonts form-fonts="formFonts" /></form>');
1112
element = form.find('tc-form-fonts');
1213
var formElement = $compile(form)(scope);
1314
scope.$digest();
@@ -23,7 +24,7 @@ describe('Topcoder Form Fonts Directive', function() {
2324

2425
describe('is initialized with', function() {
2526
it('empty font data', function() {
26-
defaultFormFont = isolateScope.formFonts[0];
27+
var defaultFormFont = isolateScope.formFonts[0];
2728

2829
expect(defaultFormFont.id).to.equal(0);
2930
expect(defaultFormFont.source).to.equal('');

‎app/directives/tc-form-stockart/tc-form-stockart.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ describe('Topcoder Form Stockart Directive', function() {
66
bard.appModule('topcoder');
77
bard.inject(this, '$compile', '$rootScope');
88
scope = $rootScope.$new();
9+
scope.stockarts = [];
910

10-
var form = angular.element('<form><tc-form-stockart /></form>');
11+
var form = angular.element('<form><tc-form-stockart form-stockarts="stockarts" /></form>');
1112
element = form.find('tc-form-stockart');
1213
var formElement = $compile(form)(scope);
1314
scope.$digest();

‎app/services/communityData.service.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,28 @@
1919
var data = {
2020
"memberLeaderboard": [
2121
{
22-
"avatar": "//www.topcoder.com/wp-content/uploads/2015/05/abedavera.jpg",
23-
"name": "abedavera",
22+
"avatar": "//www.topcoder.com/wp-content/uploads/2015/05/nexttopdesigns_dec2015.png",
23+
"name": "nexttopdesigns",
2424
"contestType": "Design",
25-
"description": "TCO15 Design Champion!",
25+
"description": "Ten wins earning over $10K in design challenges",
2626
"class": "design"
2727
}, {
28-
"avatar": "//www.topcoder.com/wp-content/uploads/2015/05/bonton.jpg",
29-
"name": "bonton",
28+
"avatar": "//www.topcoder.com/wp-content/uploads/2015/05/seriyvolk83_dec2015.png",
29+
"name": "seriyvolk83",
3030
"contestType": "Development",
31-
"description": "Won $4200 with 4 wins in development challenges",
31+
"description": "Six wins earning over $4K in development challenges",
3232
"class": "develop"
3333
}, {
34-
"avatar": "//www.topcoder.com/wp-content/uploads/2015/05/maksay.jpg",
35-
"name": "maksay",
34+
"avatar": "//www.topcoder.com/wp-content/uploads/2015/05/sadhwaniyash6_dec2015.png",
35+
"name": "sadhwaniyash6",
3636
"contestType": "Data Science",
37-
"description": "Only participant to see a ratings increase in all four rounds in Sept.",
37+
"description": "Rating increase of 627 pts in Oct SRMs vaulting into Div 1.",
3838
"class": "data-science"
3939
}, {
40-
"avatar": "https://www.topcoder.com/wp-content/uploads/2015/05/herlansyahs.jpg",
41-
"name": "herlansyahs",
40+
"avatar": "https://www.topcoder.com/wp-content/uploads/2015/05/alyad_dec2015.png",
41+
"name": "Alyad",
4242
"contestType": "Design Rookie",
43-
"description": "Won first and second placements within his first two months of becoming a member!",
43+
"description": "Won 2 challenges within 6 weeks of becoming a member!",
4444
"class": "design"
4545
}],
4646
"copilots": [{

‎bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"angular-ui-router": "~0.2.15",
4040
"angular-xml": "~2.1.1",
4141
"angularjs-toaster": "~0.4.15",
42-
"appirio-tech-ng-iso-constants": "git@github.com:appirio-tech/ng-iso-constants#~1.0.5",
42+
"appirio-tech-ng-iso-constants": "git@github.com:appirio-tech/ng-iso-constants#~1.0.6",
4343
"appirio-tech-ng-ui-components": "appirio-tech/ng-ui-components#bower-wiredep-fix",
4444
"d3": "~3.5.6",
4545
"fontawesome": "~4.3.0",

0 commit comments

Comments
 (0)
This repository has been archived.