Skip to content

Commit 9ccd6da

Browse files
Fix issue #1
1 parent 9e396be commit 9ccd6da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vuedragablefor",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "vue dragable for directive",
55
"main": "src\\vuedragablefor.js",
66
"files": [

src/vuedragablefor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
var Sortable = require("Sortable.js");
6565
module.exports = buildVueDragFor(_, Sortable);
6666
} else if (typeof define == "function" && define.amd) {
67-
define(['lodash', 'Sortable'], function(_, Sortable){ return buildVueDragFor(_, Sortable; });
67+
define(['lodash', 'Sortable'], function(_, Sortable){ return buildVueDragFor(_, Sortable);});
6868
} else if ((window.Vue) && (window._) && (window.Sortable)) {
6969
window.vueDragFor = buildVueDragFor(window._, window.Sortable);
7070
Vue.use(window.vueDragFor);

0 commit comments

Comments
 (0)