rpage icon indicating copy to clipboard operation
rpage copied to clipboard

This not work in Jquery 3.1.1

Open ghost opened this issue 7 years ago • 1 comments

ghost avatar Mar 17 '17 03:03 ghost

Change function calculateWidth() in line 161 to below

this.calculateWidth = function() { var width = 0; for (var i = 0; i < $container.find("li").length; i++) { var getWidthA = $container.find("li").eq(i).children("a").eq(0).outerWidth() if (typeof getWidthA != 'undefined') { width += getWidthA } var getWidthSpan = $container.find("li").eq(i).children("span").eq(0).outerWidth() if (typeof getWidthSpan != 'undefined') { width += getWidthSpan } } return width; }

earthexceed avatar Jul 03 '17 09:07 earthexceed