Browse Source

* code style

experimental
RubaXa 9 years ago
parent
commit
b1defd32ff
  1. 9
      Sortable.js
  2. 2
      Sortable.min.js
  3. 12
      knockout-sortable.js

9
Sortable.js

@ -4,7 +4,6 @@
* @license MIT
*/
(function (factory) {
"use strict";
@ -24,10 +23,10 @@
})(function () {
"use strict";
if (typeof window == "undefined" || typeof window.document == "undefined") {
return function() {
throw new Error( "Sortable.js requires a window with a document" );
}
if (typeof window == "undefined" || !window.document) {
return function SortableError() {
throw new Error("Sortable.js requires a window with a document");
};
}
var dragEl,

2
Sortable.min.js vendored

File diff suppressed because one or more lines are too long

12
knockout-sortable.js

@ -1,3 +1,5 @@
/*global ko*/
(function (factory) {
"use strict";
//get ko ref via global or require
@ -25,13 +27,17 @@
factory(koRef, sortableRef);
}
//if both references aren't found yet, get via AMD if available
else if (typeof define === 'function' && define.amd){
else if (typeof define === 'function' && define.amd) {
//we may have a reference to only 1, or none
if (koRef !== undefined && sortableRef === undefined) {
define(['./Sortable'], function(amdSortableRef){ factory(koRef, amdSortableRef); });
define(['./Sortable'], function (amdSortableRef) {
factory(koRef, amdSortableRef);
});
}
else if (koRef === undefined && sortableRef !== undefined) {
define(['knockout'], function(amdKnockout){ factory(amdKnockout, sortableRef); });
define(['knockout'], function (amdKnockout) {
factory(amdKnockout, sortableRef);
});
}
else if (koRef === undefined && sortableRef === undefined) {
define(['knockout', './Sortable'], factory);

Loading…
Cancel
Save