jsuites 4.17.3 → 4.17.4
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.basic.js +6 -7
- package/dist/jsuites.js +6 -7
- package/package.json +1 -1
package/dist/jsuites.basic.js
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
var jSuites = {};
|
|
19
19
|
|
|
20
|
-
var Version = '4.17.
|
|
20
|
+
var Version = '4.17.4';
|
|
21
21
|
|
|
22
22
|
var Events = function() {
|
|
23
23
|
|
|
@@ -1677,12 +1677,6 @@ jSuites.calendar = (function(el, options) {
|
|
|
1677
1677
|
|
|
1678
1678
|
calendarContainer = document.createElement('div');
|
|
1679
1679
|
calendarContainer.className = 'jcalendar-container';
|
|
1680
|
-
|
|
1681
|
-
// Controls
|
|
1682
|
-
if (! obj.options.controls) {
|
|
1683
|
-
calendarContainer.classList.add('jcalendar-hide-controls');
|
|
1684
|
-
}
|
|
1685
|
-
|
|
1686
1680
|
calendarContent = document.createElement('div');
|
|
1687
1681
|
calendarContent.className = 'jcalendar-content';
|
|
1688
1682
|
calendarContainer.appendChild(calendarContent);
|
|
@@ -1875,6 +1869,11 @@ jSuites.calendar = (function(el, options) {
|
|
|
1875
1869
|
obj.open();
|
|
1876
1870
|
}
|
|
1877
1871
|
|
|
1872
|
+
// Controls
|
|
1873
|
+
if (obj.options.controls == false) {
|
|
1874
|
+
calendarContainer.classList.add('jcalendar-hide-controls');
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1878
1877
|
// Change method
|
|
1879
1878
|
el.change = obj.setValue;
|
|
1880
1879
|
|
package/dist/jsuites.js
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
var jSuites = {};
|
|
19
19
|
|
|
20
|
-
var Version = '4.17.
|
|
20
|
+
var Version = '4.17.4';
|
|
21
21
|
|
|
22
22
|
var Events = function() {
|
|
23
23
|
|
|
@@ -1688,12 +1688,6 @@ jSuites.calendar = (function(el, options) {
|
|
|
1688
1688
|
|
|
1689
1689
|
calendarContainer = document.createElement('div');
|
|
1690
1690
|
calendarContainer.className = 'jcalendar-container';
|
|
1691
|
-
|
|
1692
|
-
// Controls
|
|
1693
|
-
if (! obj.options.controls) {
|
|
1694
|
-
calendarContainer.classList.add('jcalendar-hide-controls');
|
|
1695
|
-
}
|
|
1696
|
-
|
|
1697
1691
|
calendarContent = document.createElement('div');
|
|
1698
1692
|
calendarContent.className = 'jcalendar-content';
|
|
1699
1693
|
calendarContainer.appendChild(calendarContent);
|
|
@@ -1886,6 +1880,11 @@ jSuites.calendar = (function(el, options) {
|
|
|
1886
1880
|
obj.open();
|
|
1887
1881
|
}
|
|
1888
1882
|
|
|
1883
|
+
// Controls
|
|
1884
|
+
if (obj.options.controls == false) {
|
|
1885
|
+
calendarContainer.classList.add('jcalendar-hide-controls');
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1889
1888
|
// Change method
|
|
1890
1889
|
el.change = obj.setValue;
|
|
1891
1890
|
|
package/package.json
CHANGED