File tree Expand file tree Collapse file tree 6 files changed +36
-8
lines changed Expand file tree Collapse file tree 6 files changed +36
-8
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ <h1 class="md-display-1">Angular Material</h1>
42
42
Here's what you'll get:
43
43
< ul >
44
44
< li > Sample Landing and Dashboard pages design with Material Design</ li >
45
- <!-- < li>Custom Material Design theme so that you can easily create your own theme</li> -- >
45
+ < li > Custom Material Design theme so that you can easily create your own theme</ li >
46
46
< li > Sample Dialog, Toast notifications & Tabs</ li >
47
47
</ ul >
48
48
</ p >
Original file line number Diff line number Diff line change
1
+ ( function ( ) {
2
+ "use strict" ;
3
+
4
+ angular . module ( 'app.config' ) . config ( function ( $mdThemingProvider ) {
5
+ /* For more info, visit https://material.angularjs.org/#/Theming/01_introduction */
6
+ $mdThemingProvider . theme ( 'default' )
7
+ . primaryPalette ( 'teal' )
8
+ . accentPalette ( 'cyan' )
9
+ . warnPalette ( 'red' ) ;
10
+ } ) ;
11
+
12
+ } ) ( ) ;
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 1.2.0 " ,
2
+ "version" : " 1.2.1 " ,
3
3
"devDependencies" : {
4
- "del" : " ^1.1.1" ,
5
4
"gulp" : " ^3.8.8" ,
6
5
"laravel-elixir" : " *" ,
7
6
"laravel-elixir-angular" : " ^0.1.1" ,
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ <h1 class="md-display-1">Angular Material</h1>
42
42
Here's what you'll get:
43
43
< ul >
44
44
< li > Sample Landing and Dashboard pages design with Material Design</ li >
45
- <!-- < li>Custom Material Design theme so that you can easily create your own theme</li> -- >
45
+ < li > Custom Material Design theme so that you can easily create your own theme</ li >
46
46
< li > Sample Dialog, Toast notifications & Tabs</ li >
47
47
</ ul >
48
48
</ p >
Original file line number Diff line number Diff line change @@ -45,16 +45,21 @@ Open a new issue.
45
45
46
46
Here's what I'm planning for the next versions:
47
47
48
- + Remove unused dependency in package.json
49
- + Sample route authentication (via $localStorage)
50
48
+ Add sample Laravel APIs and call them using Restangular
51
49
+ Laravel login API fixes
50
+ + Sample route authentication (via $localStorage)
51
+ + Gulp watch should not exit when it catches an error
52
52
+ Host demo on github pages
53
53
+ Installer script that does everything
54
- + Material design custom theming
55
54
56
55
## Changelog
57
56
57
+ ### v1.2.1
58
+
59
+ + Remove unused dependency in package.json
60
+ + Material design custom theming
61
+
62
+
58
63
### v1.2.0
59
64
60
65
+ Add Angular Material boilerplate for Dashboard
You can’t perform that action at this time.
0 commit comments