fixing InsertMacroSplitButton typo in jquery selector causing javascript errors.

fixing modal $.browser checks to not cause console errors due to deprecated browser object in jquery 1.9+.
This commit is contained in:
Claus
2016-08-08 13:23:46 +02:00
parent 1b9a3e8ebc
commit 55752abdcf
3 changed files with 6 additions and 6 deletions

View File

@@ -27,7 +27,7 @@
//be the previous element with the class .sbMenu
var splitButtons = $('.sbPlaceHolder', container);
splitButtons.each(function() {
var menu = $(this).prev(".sbMenu;");
var menu = $(this).prev(".sbMenu");
$(this).find("a.sbLink").splitbutton({ menu: menu });
});