fix more whitespace in jkanban.js
This commit is contained in:
@@ -31,7 +31,7 @@
|
|||||||
* @author: Riccardo Tartaglia
|
* @author: Riccardo Tartaglia
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//Require dragula
|
//Require dragula
|
||||||
var dragula = require('dragula');
|
var dragula = require('dragula');
|
||||||
|
|
||||||
(function () {
|
(function () {
|
||||||
@@ -591,7 +591,7 @@
|
|||||||
}());
|
}());
|
||||||
|
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
"dragula": 9
|
"dragula": 9
|
||||||
}],
|
}],
|
||||||
2: [function (require, module, exports) {
|
2: [function (require, module, exports) {
|
||||||
@@ -599,7 +599,7 @@
|
|||||||
return Array.prototype.slice.call(a, n);
|
return Array.prototype.slice.call(a, n);
|
||||||
}
|
}
|
||||||
|
|
||||||
}, {}],
|
}, {}],
|
||||||
3: [function (require, module, exports) {
|
3: [function (require, module, exports) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
@@ -614,7 +614,7 @@
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
"ticky": 10
|
"ticky": 10
|
||||||
}],
|
}],
|
||||||
4: [function (require, module, exports) {
|
4: [function (require, module, exports) {
|
||||||
@@ -685,7 +685,7 @@
|
|||||||
return thing;
|
return thing;
|
||||||
};
|
};
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
"./debounce": 3,
|
"./debounce": 3,
|
||||||
"atoa": 2
|
"atoa": 2
|
||||||
}],
|
}],
|
||||||
@@ -802,7 +802,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
||||||
}, {
|
}, {
|
||||||
"./eventmap": 6,
|
"./eventmap": 6,
|
||||||
"custom-event": 7
|
"custom-event": 7
|
||||||
}],
|
}],
|
||||||
@@ -823,7 +823,7 @@
|
|||||||
module.exports = eventmap;
|
module.exports = eventmap;
|
||||||
|
|
||||||
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
||||||
}, {}],
|
}, {}],
|
||||||
7: [function (require, module, exports) {
|
7: [function (require, module, exports) {
|
||||||
(function (global) {
|
(function (global) {
|
||||||
|
|
||||||
@@ -853,33 +853,33 @@
|
|||||||
|
|
||||||
// IE >= 9
|
// IE >= 9
|
||||||
'function' === typeof document.createEvent ? function CustomEvent(type, params) {
|
'function' === typeof document.createEvent ? function CustomEvent(type, params) {
|
||||||
var e = document.createEvent('CustomEvent');
|
var e = document.createEvent('CustomEvent');
|
||||||
if (params) {
|
if (params) {
|
||||||
e.initCustomEvent(type, params.bubbles, params.cancelable, params.detail);
|
e.initCustomEvent(type, params.bubbles, params.cancelable, params.detail);
|
||||||
} else {
|
} else {
|
||||||
e.initCustomEvent(type, false, false, void 0);
|
e.initCustomEvent(type, false, false, void 0);
|
||||||
}
|
|
||||||
return e;
|
|
||||||
} :
|
|
||||||
|
|
||||||
// IE <= 8
|
|
||||||
function CustomEvent(type, params) {
|
|
||||||
var e = document.createEventObject();
|
|
||||||
e.type = type;
|
|
||||||
if (params) {
|
|
||||||
e.bubbles = Boolean(params.bubbles);
|
|
||||||
e.cancelable = Boolean(params.cancelable);
|
|
||||||
e.detail = params.detail;
|
|
||||||
} else {
|
|
||||||
e.bubbles = false;
|
|
||||||
e.cancelable = false;
|
|
||||||
e.detail = void 0;
|
|
||||||
}
|
|
||||||
return e;
|
|
||||||
}
|
}
|
||||||
|
return e;
|
||||||
|
} :
|
||||||
|
|
||||||
|
// IE <= 8
|
||||||
|
function CustomEvent(type, params) {
|
||||||
|
var e = document.createEventObject();
|
||||||
|
e.type = type;
|
||||||
|
if (params) {
|
||||||
|
e.bubbles = Boolean(params.bubbles);
|
||||||
|
e.cancelable = Boolean(params.cancelable);
|
||||||
|
e.detail = params.detail;
|
||||||
|
} else {
|
||||||
|
e.bubbles = false;
|
||||||
|
e.cancelable = false;
|
||||||
|
e.detail = void 0;
|
||||||
|
}
|
||||||
|
return e;
|
||||||
|
}
|
||||||
|
|
||||||
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
||||||
}, {}],
|
}, {}],
|
||||||
8: [function (require, module, exports) {
|
8: [function (require, module, exports) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
@@ -915,7 +915,7 @@
|
|||||||
rm: rmClass
|
rm: rmClass
|
||||||
};
|
};
|
||||||
|
|
||||||
}, {}],
|
}, {}],
|
||||||
9: [function (require, module, exports) {
|
9: [function (require, module, exports) {
|
||||||
(function (global) {
|
(function (global) {
|
||||||
'use strict';
|
'use strict';
|
||||||
@@ -1602,7 +1602,7 @@
|
|||||||
module.exports = dragula;
|
module.exports = dragula;
|
||||||
|
|
||||||
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
||||||
}, {
|
}, {
|
||||||
"./classes": 8,
|
"./classes": 8,
|
||||||
"contra/emitter": 4,
|
"contra/emitter": 4,
|
||||||
"crossvent": 5
|
"crossvent": 5
|
||||||
@@ -1621,5 +1621,5 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
module.exports = tick;
|
module.exports = tick;
|
||||||
}, {}]
|
}, {}]
|
||||||
}, {}, [1]);
|
}, {}, [1]);
|
||||||
|
|||||||
Reference in New Issue
Block a user