blob: 0ecaf7328ed026f6850afd9ddca8ec961cd1a4d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* menu_methods.js
*/
(function($) {
module("menu: methods");
test("destroy", function() {
domEqual("#menu1", function() {
$("#menu1").menu().menu("destroy");
});
});
})(jQuery);
|