Skip to content

Commit 8329c29

Browse files
Merge pull request hootsuite#111 from RadValentin/102-fix-jquery-plugin-in-webpack
Use actual package name in AMD definition hootsuite#102
2 parents 1f3fec0 + d609505 commit 8329c29

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": "grid-list",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Drag and drop library for a two-dimensional resizable and responsive list of items",
55
"keywords": [
66
"grid",

src/jquery.gridList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
(function (factory) {
44
if (typeof define === 'function' && define.amd) {
55
// AMD. Register as an anonymous module.
6-
define(['jquery', 'gridlist'], factory);
6+
define(['jquery', 'grid-list'], factory);
77
} else {
88
factory(jQuery, GridList);
99
}

0 commit comments

Comments
 (0)