Skip to content

Commit 2a7db0e

Browse files
committed
Bumping to v1.0.4
1 parent ddde056 commit 2a7db0e

8 files changed

+18
-18
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-color-picker",
33
"description": "Color Picker Directive For AngularJS",
4-
"version": "1.0.3",
4+
"version": "1.0.4",
55
"homepage": "https://github.com/ruhley/angular-color-picker",
66
"repository": {
77
"type": "git",

dist/angularjs-color-picker.css

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

dist/angularjs-color-picker.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*!
2-
* angularjs-color-picker v1.0.3
2+
* angularjs-color-picker v1.0.4
33
* https://github.com/ruhley/angular-color-picker/
44
*
55
* Copyright 2016 ruhley
66
*
7-
* 2016-04-08 09:35:35
7+
* 2016-04-14 15:51:36
88
*
99
*/
1010
if (typeof module !== "undefined" && typeof exports !== "undefined" && module.exports === exports){
@@ -305,7 +305,7 @@ if (typeof module !== "undefined" && typeof exports !== "undefined" && module.ex
305305
control[0].$setDirty();
306306
}
307307
} else {
308-
if (newValue === null) {
308+
if (newValue === null || newValue === '') {
309309
$scope.hue = undefined;
310310
$scope.saturation = undefined;
311311
$scope.lightness = undefined;

dist/angularjs-color-picker.min.css

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

dist/angularjs-color-picker.min.js

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

dist/themes/angularjs-color-picker-bootstrap.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*!
2-
* angularjs-color-picker v1.0.3
2+
* angularjs-color-picker v1.0.4
33
* https://github.com/ruhley/angular-color-picker/
44
*
55
* Copyright 2016 ruhley
66
*
7-
* 2016-04-08 09:35:35
7+
* 2016-04-14 15:51:36
88
*
99
*/
1010
.color-picker-wrapper .color-picker-input-wrapper {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*!
2-
* angularjs-color-picker v1.0.3
2+
* angularjs-color-picker v1.0.4
33
* https://github.com/ruhley/angular-color-picker/
44
*
55
* Copyright 2016 ruhley
66
*
7-
* 2016-04-08 09:35:35
7+
* 2016-04-14 15:51:36
88
*
99
*/.color-picker-wrapper .color-picker-input-wrapper{width:100%}.color-picker-wrapper .color-picker-swatch:not(.input-group-addon){height:28px}.color-picker-wrapper.color-picker-swatch-only .input-group .input-group-addon{border-radius:4px}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angularjs-color-picker",
33
"description": "Color Picker Directive For AngularJS",
4-
"version": "1.0.3",
4+
"version": "1.0.4",
55
"license": "MIT",
66
"main": "dist/angularjs-color-picker.min.js",
77
"dependencies": {
@@ -25,11 +25,11 @@
2525
"grunt-contrib-concat": "~1.0.0",
2626
"grunt-contrib-cssmin": "~1.0.0",
2727
"grunt-contrib-jshint": "~1.0.0",
28-
"grunt-contrib-less": "~1.2.0",
28+
"grunt-contrib-less": "~1.3.0",
2929
"grunt-contrib-uglify": "~1.0.0",
3030
"grunt-karma": "~0.12.0",
3131
"grunt-notify": "~0.4.1",
32-
"load-grunt-tasks": "~3.4.0",
32+
"load-grunt-tasks": "~3.5.0",
3333
"time-grunt": "~1.3.0"
3434
},
3535
"engines": {

0 commit comments

Comments
 (0)