Skip to content

Commit

Permalink
Fix issue #1
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Desmaisons committed Jul 4, 2016
1 parent 9e396be commit 9ccd6da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vuedragablefor",
"version": "1.0.2",
"version": "1.0.3",
"description": "vue dragable for directive",
"main": "src\\vuedragablefor.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/vuedragablefor.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
var Sortable = require("Sortable.js");
module.exports = buildVueDragFor(_, Sortable);
} else if (typeof define == "function" && define.amd) {
define(['lodash', 'Sortable'], function(_, Sortable){ return buildVueDragFor(_, Sortable; });
define(['lodash', 'Sortable'], function(_, Sortable){ return buildVueDragFor(_, Sortable);});
} else if ((window.Vue) && (window._) && (window.Sortable)) {
window.vueDragFor = buildVueDragFor(window._, window.Sortable);
Vue.use(window.vueDragFor);
Expand Down

0 comments on commit 9ccd6da

Please sign in to comment.