Fixed messed up title-tag generation
authorAlexander Ebert <ebert@woltlab.com>
Fri, 14 Oct 2011 18:05:02 +0000 (20:05 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Fri, 14 Oct 2011 18:05:02 +0000 (20:05 +0200)
wcfsetup/install/files/js/WCF.js

index cfc3b992689cd5cdf8e3c83b93d74fa3074bb11c..c935be4f3dc02045dcf059296c4f3bb3b1739c11 100644 (file)
@@ -2953,7 +2953,7 @@ $.widget('ui.wcfPages', {
                        $pageList.append($nextElement);
                        
                        if (this.options.activePage < this.options.maxPage) {
-                               var $nextLink = $('<a title="' + ((this.options.nextPage != null) ? (' title="' + this.options.nextPage + '"') : ('')) + '"></a>');
+                               var $nextLink = $('<a' + ((this.options.nextPage != null) ? (' title="' + this.options.nextPage + '"') : ('')) + '></a>').addClass('ballonTooltip');
                                $nextElement.append($nextLink);
                                this._bindSwitchPage($nextLink, this.options.activePage + 1);