Closed
Description
jQuery UI has a great selection of icons that could be used with the menu entries. However, your plugin does not support these icons out of the box. I have included the changes I make below in hopes of having this as the default icon support in this plugin.
line 1078 change if block to:
// add icons
if (item.icon) {
$('<span></span>', {
'class' : 'ui-icon ui-icon-' + item.icon,
}).prependTo($t);
}