jsuites 5.8.3 → 5.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/jsuites.js +2 -5
- package/package.json +1 -1
package/dist/jsuites.js
CHANGED
|
@@ -1504,9 +1504,6 @@ function Mask() {
|
|
|
1504
1504
|
}
|
|
1505
1505
|
var t = helpers_date.now(this.date);
|
|
1506
1506
|
v = helpers_date.dateToNum(t);
|
|
1507
|
-
if (this.date[4]) {
|
|
1508
|
-
v += parseFloat(this.date[4] / 60);
|
|
1509
|
-
}
|
|
1510
1507
|
}
|
|
1511
1508
|
|
|
1512
1509
|
if (isNaN(v)) {
|
|
@@ -8054,7 +8051,7 @@ function Picker(el, options) {
|
|
|
8054
8051
|
var init = function() {
|
|
8055
8052
|
// Class
|
|
8056
8053
|
el.classList.add('jpicker');
|
|
8057
|
-
el.setAttribute('tabindex', '
|
|
8054
|
+
el.setAttribute('tabindex', '0');
|
|
8058
8055
|
el.onmousedown = function(e) {
|
|
8059
8056
|
if (! el.classList.contains('jpicker-focus')) {
|
|
8060
8057
|
obj.open();
|
|
@@ -12865,7 +12862,7 @@ var jsuites_jSuites = {
|
|
|
12865
12862
|
...dictionary,
|
|
12866
12863
|
...helpers,
|
|
12867
12864
|
/** Current version */
|
|
12868
|
-
version: '5.8.
|
|
12865
|
+
version: '5.8.5',
|
|
12869
12866
|
/** Bind new extensions to Jsuites */
|
|
12870
12867
|
setExtensions: function(o) {
|
|
12871
12868
|
if (typeof(o) == 'object') {
|
package/package.json
CHANGED