xing-framework 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/default_configuration/base_app/frontend/src/app/homepage/homepageControllers.js +4 -2
- data/default_configuration/base_app/frontend/src/app/homepage/homepageStates.js +2 -0
- data/default_configuration/base_app/frontend/src/styles/_constants.sass +26 -10
- metadata +3 -7
- data/default_configuration/base_app/frontend/create +0 -0
- data/default_configuration/base_app/frontend/module.prefix +0 -1
- data/default_configuration/base_app/frontend/module.suffix +0 -1
- data/default_configuration/base_app/frontend/sprockets/index.tpl.js +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79c9185b1504f29fbc63d458e4e5931557529be7
|
4
|
+
data.tar.gz: b360d306893563ce8719c57bfa07bcf6f26bfd4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37dce22380878ec59852385780bb4c45448764b762da5f72d4a2bf80761cf1dea3d6872da0cafd7173cb29272d6377965cbffcef0ccf05fb659fc747f4a2cec1
|
7
|
+
data.tar.gz: 6b7500b65371dfd2f4d8a357be1a67ba190d53173f51a294fd5faae233671f0f892126a144cf58bc85e70a7b0624f5a86830f2059023a790ad23d86bdeededba
|
@@ -1,9 +1,11 @@
|
|
1
1
|
import {Controller} from 'a1atscript';
|
2
2
|
|
3
3
|
@Controller('HomepageShowCtrl', [])
|
4
|
-
export
|
4
|
+
export class HomepageShowController {
|
5
|
+
constructor() {}
|
5
6
|
}
|
6
7
|
|
7
8
|
@Controller('HomepageCtrl', [])
|
8
|
-
export
|
9
|
+
export class HomepageController {
|
10
|
+
constructor() {}
|
9
11
|
}
|
@@ -6,6 +6,7 @@ export class HomepageState extends TrackAdminState {
|
|
6
6
|
constructor() {
|
7
7
|
super();
|
8
8
|
this.controller = 'HomepageCtrl';
|
9
|
+
this.controllerAs = 'homepage';
|
9
10
|
this.templateUrl = 'homepage/homepage.tpl.html';
|
10
11
|
this.abstract = true;
|
11
12
|
this.url = 'home';
|
@@ -17,6 +18,7 @@ export class HomepageShowState {
|
|
17
18
|
constructor() {
|
18
19
|
this.url = '';
|
19
20
|
this.controller = 'HomepageShowCtrl';
|
21
|
+
this.controllerAs = 'homepageShow';
|
20
22
|
this.templateUrl = 'homepage/homepage-show.tpl.html';
|
21
23
|
}
|
22
24
|
}
|
@@ -1,14 +1,30 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
// These are default constants for Xing
|
2
|
+
// Uncomment to override any of these
|
3
3
|
|
4
|
-
|
4
|
+
// Breakpoints
|
5
|
+
// $small: 500px
|
6
|
+
// $medium: 768px
|
7
|
+
// $desktop: 960px
|
5
8
|
|
6
|
-
|
9
|
+
// General content & nav layout
|
10
|
+
// @include breakpoint-set('to ems', true)
|
11
|
+
// $content_width: 960px
|
7
12
|
|
8
|
-
|
9
|
-
border-width: 2px
|
10
|
-
border-style: solid
|
11
|
-
border-color: #ff4444
|
12
|
-
background: $error_bg_color
|
13
|
+
// $main_background_color: #67c
|
13
14
|
|
14
|
-
$
|
15
|
+
// $navbar_link_h_padding: 10px
|
16
|
+
// $navbar_link_v_padding: 10px
|
17
|
+
// $navbar_responsive_background_color: #ddd
|
18
|
+
|
19
|
+
// Success color for forms, flashes etc.
|
20
|
+
// $success_color: #0C0
|
21
|
+
// $error_color: #C00
|
22
|
+
|
23
|
+
// Admin menu & callout color
|
24
|
+
// $admin_menu_height: 22px
|
25
|
+
// $admin_background_color: #777755
|
26
|
+
|
27
|
+
// $link_color: #00e
|
28
|
+
// $call_to_action_color: #0e0
|
29
|
+
|
30
|
+
// $text_highlight_color: #777755
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xing-framework
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Evan Dorn
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-01
|
12
|
+
date: 2016-02-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: trollop
|
@@ -213,13 +213,9 @@ files:
|
|
213
213
|
- default_configuration/base_app/frontend/config/environments/integration.js
|
214
214
|
- default_configuration/base_app/frontend/config/environments/production.js
|
215
215
|
- default_configuration/base_app/frontend/config/environments/test.js
|
216
|
-
- default_configuration/base_app/frontend/create
|
217
216
|
- default_configuration/base_app/frontend/karma/karma-unit.tpl.js
|
218
|
-
- default_configuration/base_app/frontend/module.prefix
|
219
|
-
- default_configuration/base_app/frontend/module.suffix
|
220
217
|
- default_configuration/base_app/frontend/npm-shrinkwrap.json
|
221
218
|
- default_configuration/base_app/frontend/package.json
|
222
|
-
- default_configuration/base_app/frontend/sprockets/index.tpl.js
|
223
219
|
- default_configuration/base_app/frontend/src/app/app.js
|
224
220
|
- default_configuration/base_app/frontend/src/app/appConfig.js
|
225
221
|
- default_configuration/base_app/frontend/src/app/auth/auth.js
|
@@ -336,7 +332,7 @@ rdoc_options:
|
|
336
332
|
- "--main"
|
337
333
|
- doc/README
|
338
334
|
- "--title"
|
339
|
-
- xing-framework-0.3.
|
335
|
+
- xing-framework-0.3.1 Documentation
|
340
336
|
require_paths:
|
341
337
|
- lib/
|
342
338
|
required_ruby_version: !ruby/object:Gem::Requirement
|
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
(function ( window, angular, undefined ) {
|
@@ -1 +0,0 @@
|
|
1
|
-
})( window, window.angular );
|