Skip to content

Commit de4a0f0

Browse files
committed
New version
1 parent 0104a2f commit de4a0f0

4 files changed

+11
-6
lines changed

bootstrap-datepicker.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
angular.module("schemaForm").run(["$templateCache", function($templateCache) {$templateCache.put("directives/decorators/bootstrap/datepicker/datepicker.html","<div class=\"form-group {{form.htmlClass}}\" ng-class=\"{\'has-error\': hasError()}\">\n <label class=\"control-label\" ng-show=\"showTitle()\">{{form.title}}</label>\n\n <input ng-show=\"form.key\"\n style=\"background-color: white\"\n type=\"text\"\n class=\"form-control {{form.fieldHtmlClass}}\"\n schema-validate=\"form\"\n ng-model=\"$$value$$\"\n pick-a-date\n min-date=\"form.minDate\"\n max-date=\"form.maxDate\"\n format=\"form.format\" />\n\n <span class=\"help-block\">{{ (hasError() && errorMessage(schemaError())) || form.description}}</span>\n</div>");}]);
1+
angular.module("schemaForm").run(["$templateCache", function($templateCache) {$templateCache.put("directives/decorators/bootstrap/datepicker/datepicker.html","<div class=\"form-group {{form.htmlClass}}\" ng-class=\"{\'has-error\': hasError()}\">\n <label class=\"control-label\" ng-show=\"showTitle()\">{{form.title}}</label>\n\n <div ng-class=\"{\'input-group\': (form.fieldAddonLeft || form.fieldAddonRight)}\">\n <span ng-if=\"form.fieldAddonLeft\"\n class=\"input-group-addon\"\n ng-bind-html=\"form.fieldAddonLeft\"></span>\n <input ng-show=\"form.key\"\n style=\"background-color: white\"\n type=\"text\"\n class=\"form-control {{form.fieldHtmlClass}}\"\n schema-validate=\"form\"\n ng-model=\"$$value$$\"\n pick-a-date=\"form.pickadate\"\n min-date=\"form.minDate\"\n max-date=\"form.maxDate\"\n name=\"{{form.key.slice(-1)[0]}}\"\n format=\"form.format\" />\n <span ng-if=\"form.fieldAddonRight\"\n class=\"input-group-addon\"\n ng-bind-html=\"form.fieldAddonRight\"></span>\n </div>\n <span class=\"help-block\">{{ (hasError() && errorMessage(schemaError())) || form.description}}</span>\n</div>\n");}]);
22
angular.module('schemaForm').directive('pickADate', function () {
33

44
//String dates for min and max is not supported
@@ -17,6 +17,7 @@ angular.module('schemaForm').directive('pickADate', function () {
1717
require: 'ngModel',
1818
scope: {
1919
ngModel: '=',
20+
pickADate: '=',
2021
minDate: '=',
2122
maxDate: '=',
2223
format: '='
@@ -30,12 +31,16 @@ angular.module('schemaForm').directive('pickADate', function () {
3031
//By setting formatSubmit to null we inhibit the
3132
//hidden field that pickadate likes to create.
3233
//We use ngModel formatters instead to format the value.
33-
element.pickadate({
34+
var opts = {
3435
onClose: function () {
3536
element.blur();
3637
},
3738
formatSubmit: null
38-
});
39+
};
40+
if (scope.pickADate) {
41+
angular.extend(opts, scope.pickADate);
42+
}
43+
element.pickadate(opts);
3944

4045
//Defaultformat is for json schema date-time is ISO8601
4146
//i.e. "yyyy-mm-dd"

bootstrap-datepicker.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": [
44
"bootstrap-datepicker.min.js"
55
],
6-
"version": "0.2.2",
6+
"version": "0.3.1",
77
"authors": [
88
"Textalk",
99
"David Jensen <[email protected]>"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-schema-form-datepicker",
3-
"version": "0.2.2",
3+
"version": "0.3.1",
44
"description": "Datepicker add-on for schema form",
55
"scripts": {
66
"test": "rm -fr coverage && ./node_modules/karma/bin/karma start --single-run --browsers PhantomJS karma.conf.js"

0 commit comments

Comments
 (0)