Skip to content

Commit 26ad325

Browse files
author
Lukas Oppermann
committed
hotfix
1 parent c634294 commit 26ad325

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

dist/html.sortable.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(function(root, factory) {
1+
;(function(root, factory) {
22
if (typeof define === 'function' && define.amd) {
33
define(['jquery'], factory);
44
} else if (typeof exports === 'object') {
@@ -242,7 +242,7 @@ var sortable = function(selector, options) {
242242
options = _getOptions($sortable.data('opts'), options);
243243
$sortable.data('opts', options);
244244
// reset sortable
245-
sortable.reload($sortable);
245+
_reloadSortable($sortable);
246246
// initialize
247247
var items = $sortable.children(options.items);
248248
var index;
@@ -402,10 +402,6 @@ sortable.disable = function(sortable) {
402402
_disableSortable(sortable);
403403
};
404404

405-
sortable.reload = function(sortable) {
406-
_reloadSortable(sortable);
407-
};
408-
409405
$.fn.sortable = function(options) {
410406
return sortable(this, options);
411407
};

dist/html.sortable.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)