You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
561 B
37 lines
561 B
5 years ago
|
define( [
|
||
|
"jquery",
|
||
|
"lib/helper"
|
||
|
], function( $, helper ) {
|
||
|
|
||
|
var lastItem,
|
||
|
log = [];
|
||
|
|
||
|
return $.extend( helper, {
|
||
|
log: function( message, clear ) {
|
||
|
if ( clear ) {
|
||
|
log.length = 0;
|
||
|
}
|
||
|
if ( message === undefined ) {
|
||
|
message = lastItem;
|
||
|
}
|
||
|
log.push( $.trim( message ) );
|
||
|
},
|
||
|
|
||
|
logOutput: function() {
|
||
|
return log.join( "," );
|
||
|
},
|
||
|
|
||
|
clearLog: function() {
|
||
|
log.length = 0;
|
||
|
},
|
||
|
|
||
|
click: function( menu, item ) {
|
||
|
lastItem = item;
|
||
|
menu.children( ":eq(" + item + ")" )
|
||
|
.children( ".ui-menu-item-wrapper" )
|
||
|
.trigger( "click" );
|
||
|
}
|
||
|
} );
|
||
|
|
||
|
} );
|