diff --git a/source/UI/js/Core/UI.js b/source/UI/js/Core/UI.js index 5875480f..b3b7aebe 100644 --- a/source/UI/js/Core/UI.js +++ b/source/UI/js/Core/UI.js @@ -47,7 +47,7 @@ Ox.SCROLLBAR_SIZE = Ox.UI.SCROLLBAR_SIZE = $.browser.webkit ? 8 : (function() { width = 1 + width - (inner[0].offsetWidth == width ? outer[0].clientWidth : inner[0].offsetWidth); outer.remove(); - return Math.max(width + width % 2, 8); + return width + width % 2; })(); //@ Ox.UI.PATH Path of Ox UI diff --git a/source/UI/js/Core/URL.js b/source/UI/js/Core/URL.js index c802d353..15c96072 100644 --- a/source/UI/js/Core/URL.js +++ b/source/UI/js/Core/URL.js @@ -633,7 +633,7 @@ Ox.URL = function(options) { : canBeLocation && length == 4 ? 'location' // leaves us with [-]D[.D][,[-]D[.D]] : canBeDuration ? 'duration' - : canBeDate && !/\./.test(str) && !/^\d{7}$/.test(str) && !/^\d{8}$/.test(str) ? 'date' + : canBeDate && !/\./.test(str) && !/^\d{7}$/.test(str) ? 'date' : canBeLocation && length == 2 ? 'location' : canBeNumber && /^\d+$/.test(str) ? 'number' : canBeString && str.length ? 'string' diff --git a/source/UI/js/Form/Filter.js b/source/UI/js/Form/Filter.js index 1ad8fa25..9f427886 100644 --- a/source/UI/js/Form/Filter.js +++ b/source/UI/js/Form/Filter.js @@ -28,7 +28,6 @@ Ox.Filter = function(options, self) { .defaults({ findKeys: [], list: null, - listName: Ox._('Smart List'), sortKeys: [], value: { conditions: [], @@ -175,7 +174,7 @@ Ox.Filter = function(options, self) { }) ], separators: [ - {title: Ox._('Save as {0}', [self.options.listName]), width: 112} + {title: Ox._('Save as Smart List'), width: 112} ] }); diff --git a/source/UI/js/Form/Input.js b/source/UI/js/Form/Input.js index bce4e153..0d079e63 100644 --- a/source/UI/js/Form/Input.js +++ b/source/UI/js/Form/Input.js @@ -143,9 +143,6 @@ Ox.Input = function(options, self) { setPlaceholder(); } else if (key == 'readonly') { self.$input.attr({readonly: value}); - } else if (key == 'type') { - // jQuery does not allow update via attr({type: value}) due to IE 6 bug - self.$input[0].type = value } else if (key == 'value') { if (self.options.type == 'float' && self.options.decimals) { self.options.value = self.options.value.toFixed(self.options.decimals); diff --git a/source/UI/js/Video/ClipPanel.js b/source/UI/js/Video/ClipPanel.js index 275da1d9..43e430e4 100644 --- a/source/UI/js/Video/ClipPanel.js +++ b/source/UI/js/Video/ClipPanel.js @@ -287,7 +287,6 @@ Ox.ClipPanel = function(options, self) { }]; updateSortElement(); that.triggerEvent('sort', self.options.sort); - self.$list.options({sortable: isSortable()}); } });