Skip to content

Commit 87c4e39

Browse files
1.0.3 version
1 parent e658333 commit 87c4e39

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

bootstrap.html5.fallback.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@
195195
if (enhance.date !== null)
196196
enhance.date = function (fNode, oNode) {
197197
var o = getOptions(options, "date", fNode, oNode);
198+
if(!o.zIndex) o.zIndex=1000000;
198199
o.language = culture;
199200
o.startView = 2;
200201
if (typeof o.autoclose == "undefined") o.autoclose = true;
@@ -216,6 +217,7 @@
216217
if (enhance.week !== null)
217218
enhance.week = function(fNode, oNode){
218219
var o = getOptions(options, "week", fNode, oNode);
220+
if(!o.zIndex) o.zIndex=1000000;
219221
o.language = culture;
220222
o.startView = 2;
221223
if (typeof o.autoclose == "undefined") o.autoclose = true;
@@ -237,6 +239,7 @@
237239
if (enhance.month !== null)
238240
enhance.month = function(fNode, oNode){
239241
var o = getOptions(options, "month", fNode, oNode);
242+
if(!o.zIndex) o.zIndex=1000000;
240243
o.language = culture;
241244
o.startView = 3;
242245
if (typeof o.autoclose == "undefined") o.autoclose = true;
@@ -258,6 +261,7 @@
258261
if (enhance.time !== null)
259262
enhance.time = function(fNode, oNode){
260263
var o = getOptions(options, "time", fNode, oNode);
264+
if(!o.zIndex) o.zIndex=1000000;
261265
o.language = culture;
262266
o.startView = o.maxView = 1;
263267
if (typeof o.autoclose == "undefined") o.autoclose = true;
@@ -279,6 +283,7 @@
279283
if (enhance.datetime !== null)
280284
enhance.datetime = function(fNode, oNode){
281285
var o = getOptions(options, "datetime", fNode, oNode);
286+
if(!o.zIndex) o.zIndex=1000000;
282287
o.language = culture;
283288
o.startView = 2;
284289
if (typeof o.autoclose == "undefined") o.autoclose = true;
@@ -344,7 +349,7 @@
344349
var oldInput = mvcct.enhancer["addBasicInput"];
345350
mvcct.enhancer["addBasicInput"] = function (Globalize) {
346351
oldInput(Globalize);
347-
mvcct.enhancer["register"](null, false, null, "html5 bootstrap/widgets fallback", preProcessOptions);
352+
mvcct.enhancer["register"](null, false, null, "html5 bootstrap/widgets fallback", preProcessOptions, 'html5-input');
348353
};
349354

350355
})(jQuery);

bootstrap.html5.fallback.min.js

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

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-html5-fallback",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"homepage": "https://github.com/MvcControlsToolkit/bootstrap-html5-fallback",
55
"description": "bootstrap widgets based html5 inputs fallback",
66
"main": [
@@ -21,7 +21,7 @@
2121
"polyfill"
2222
],
2323
"dependencies": {
24-
"mvcct-enhancer": ">=1.0.1",
24+
"mvcct-enhancer": ">=1.1.0",
2525
"bootstrap-colorpicker": ">=2.3.3",
2626
"smalot-bootstrap-datetimepicker": ">=2.3.10",
2727
"seiyria-bootstrap-slider": ">=7.0.3"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-html5-fallback",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "bootstrap widgets based html5 inputs fallback",
55
"main": "bootstrap.html5.fallback.js",
66
"repository": {
@@ -28,7 +28,7 @@
2828
"bootstrap.html5.fallback.d.ts"
2929
],
3030
"dependencies": {
31-
"mvcct-enhancer": ">=1.0.1",
31+
"mvcct-enhancer": ">=1.1.0",
3232
"bootstrap-colorpicker": ">=2.3.3",
3333
"bootstrap-datetime-picker": ">=2.3.10",
3434
"bootstrap-slider": ">=7.0.2"

0 commit comments

Comments
 (0)