Skip to content

Commit 8b61581

Browse files
author
Jad Joubran
committed
Version 1.2.1 - Material design custom theme
1 parent 66a8a2e commit 8b61581

File tree

6 files changed

+36
-8
lines changed

6 files changed

+36
-8
lines changed

angular/app/dashboard/dashboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h1 class="md-display-1">Angular Material</h1>
4242
Here's what you'll get:
4343
<ul>
4444
<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>
4646
<li>Sample Dialog, Toast notifications &amp; Tabs</li>
4747
</ul>
4848
</p>

angular/config/theme.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
})();

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
2-
"version": "1.2.0",
2+
"version": "1.2.1",
33
"devDependencies": {
4-
"del": "^1.1.1",
54
"gulp": "^3.8.8",
65
"laravel-elixir": "*",
76
"laravel-elixir-angular": "^0.1.1",

public/js/app.js

Lines changed: 13 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/views/app/dashboard/dashboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h1 class="md-display-1">Angular Material</h1>
4242
Here's what you'll get:
4343
<ul>
4444
<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>
4646
<li>Sample Dialog, Toast notifications &amp; Tabs</li>
4747
</ul>
4848
</p>

readme.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,21 @@ Open a new issue.
4545

4646
Here's what I'm planning for the next versions:
4747

48-
+ Remove unused dependency in package.json
49-
+ Sample route authentication (via $localStorage)
5048
+ Add sample Laravel APIs and call them using Restangular
5149
+ Laravel login API fixes
50+
+ Sample route authentication (via $localStorage)
51+
+ Gulp watch should not exit when it catches an error
5252
+ Host demo on github pages
5353
+ Installer script that does everything
54-
+ Material design custom theming
5554

5655
## Changelog
5756

57+
### v1.2.1
58+
59+
+ Remove unused dependency in package.json
60+
+ Material design custom theming
61+
62+
5863
### v1.2.0
5964

6065
+ Add Angular Material boilerplate for Dashboard

0 commit comments

Comments
 (0)