Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 187f162

Browse files
committed
build
1 parent a517593 commit 187f162

File tree

7 files changed

+48727
-0
lines changed

7 files changed

+48727
-0
lines changed

dist/example.css

Lines changed: 346 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/example.js

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
angular.module("app.constants", [])
2+
3+
.constant("API_URL", "https://api.topcoder.com")
4+
5+
.constant("AVATAR_URL", "https://www.topcoder.com")
6+
7+
.constant("SUBMISSION_URL", "https://studio.topcoder.com")
8+
9+
.constant("AUTH0_CLIENT_ID", "abc123")
10+
11+
.constant("AUTH0_DOMAIN", "topcoder.auth0.com")
12+
13+
.constant("AUTH0_TOKEN_NAME", "userJWTToken")
14+
15+
.constant("AUTH0_REFRESH_TOKEN_NAME", "userRefreshJWTToken")
16+
17+
;
18+
(function() {
19+
'use strict';
20+
var dependencies;
21+
22+
dependencies = ['ui.router', 'ngResource', 'app.constants', 'appirio-tech-ng-submit-work', 'appirio-tech-ng-ui-components', 'appirio-tech-ng-work-layout', 'ap-file-upload'];
23+
24+
angular.module('example', dependencies);
25+
26+
}).call(this);
27+
28+
(function() {
29+
'use strict';
30+
var config;
31+
32+
config = function($stateProvider) {
33+
var key, results, state, states;
34+
states = {};
35+
states['submit-work'] = {
36+
url: '/',
37+
title: 'submit work type',
38+
controller: 'TypeController as vm',
39+
templateUrl: 'views/submit-work-type.html'
40+
};
41+
states['submit-work-features'] = {
42+
url: '/submit-work/features',
43+
title: 'submit work features',
44+
templateUrl: 'views/submit-work-features.html'
45+
};
46+
states['submit-work-visuals'] = {
47+
url: '/submit-work/visuals',
48+
title: 'submit work visuals',
49+
templateUrl: 'views/submit-work-visuals.html'
50+
};
51+
states['submit-work-development'] = {
52+
url: '/submit-work/development',
53+
title: 'submit work development',
54+
templateUrl: 'views/submit-work-development.html'
55+
};
56+
results = [];
57+
for (key in states) {
58+
state = states[key];
59+
results.push($stateProvider.state(key, state));
60+
}
61+
return results;
62+
};
63+
64+
config.$inject = ['$stateProvider'];
65+
66+
angular.module('example').config(config).run();
67+
68+
}).call(this);
69+
70+
(function() {
71+
'use strict';
72+
var TypeController;
73+
74+
TypeController = function() {
75+
var activate, vm;
76+
vm = this;
77+
activate = function() {
78+
vm.appName = 'Big Boss App';
79+
return vm;
80+
};
81+
return activate();
82+
};
83+
84+
angular.module('appirio-tech-ng-work-layout').controller('TypeController', TypeController);
85+
86+
}).call(this);

dist/index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html><html ng-app="example"><head>
2+
3+
<title>Submit Work</title><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
4+
<link rel="stylesheet" href="example.css">
5+
<link rel="stylesheet" href="lib.css">
6+
7+
<link rel="stylesheet" href="main.css">
8+
9+
10+
<script src="//use.typekit.net/jjo6pal.js"></script><script>try{Typekit.load({ async: true });}catch(e){}
11+
</script></head><body><ui-view></ui-view><end></end><end></end><end></end>
12+
<script src="lib.js"></script>
13+
<script src="main.js"></script>
14+
<script src="example.js"></script>
15+
</body></html>

dist/lib.css

Lines changed: 276 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)