Skip to content
This repository was archived by the owner on Aug 14, 2021. It is now read-only.

Commit 1b88b87

Browse files
committed
Fix AMD dependencies
Close #82
1 parent 2a64657 commit 1b88b87

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# 1.8.3-0 / Unreleased
22
* [FEATURE] New option `autoFocus`, defaults to *false*
3+
* [BUGFIX] #82 Fixed AMD dependencies
34

45
# 1.8.2 / 2015-02-08
56

jquery.ui-contextmenu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"use strict";
1313
if ( typeof define === "function" && define.amd ) {
1414
// AMD. Register as an anonymous module.
15-
define([ "jquery-ui/menu" ], factory );
15+
define([ "jquery", "jquery-ui/menu" ], factory );
1616
} else {
1717
// Browser globals
1818
factory( jQuery );

0 commit comments

Comments
 (0)