We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41fdec0 commit 6963fc2Copy full SHA for 6963fc2
1 file changed
public/javascripts/DV/helpers/helpers.js
@@ -430,7 +430,8 @@ DV.Schema.helpers = {
430
},
431
432
unsupportedBrowser : function() {
433
- if (!(DV.jQuery.browser.msie && DV.jQuery.browser.version <= "6.0")) return false;
+ var browser = DV.jQuery.browser;
434
+ if (!(browser.msie && parseFloat(browser.version, 10) <= 6.0)) return false;
435
DV.jQuery(this.viewer.options.container).html(JST.unsupported({viewer : this.viewer}));
436
return true;
437
0 commit comments