|
|
@ -6,12 +6,12 @@ |
|
|
|
(function (factory) { |
|
|
|
(function (factory) { |
|
|
|
'use strict'; |
|
|
|
'use strict'; |
|
|
|
|
|
|
|
|
|
|
|
if (typeof define === 'function' && define.amd) { |
|
|
|
if (typeof module != 'undefined' && typeof module.exports != 'undefined') { |
|
|
|
define(['sortable'], factory); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else if (typeof module != 'undefined' && typeof module.exports != 'undefined') { |
|
|
|
|
|
|
|
module.exports = factory(require('Sortable')); |
|
|
|
module.exports = factory(require('Sortable')); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
else if (typeof define === 'function' && define.amd) { |
|
|
|
|
|
|
|
define(['sortable'], factory); |
|
|
|
|
|
|
|
} |
|
|
|
else { |
|
|
|
else { |
|
|
|
/* jshint sub:true */ |
|
|
|
/* jshint sub:true */ |
|
|
|
window['SortableMixin'] = factory(Sortable); |
|
|
|
window['SortableMixin'] = factory(Sortable); |
|
|
|