Index: trunk/extensions/LiquidThreads/classes/View.php |
— | — | @@ -956,7 +956,8 @@ |
957 | 957 | $menuHTML = Xml::tags( 'ul', array( 'class' => 'lqt-thread-toolbar-command-list' ), |
958 | 958 | $this->listItemsForCommands( $commands ) ); |
959 | 959 | |
960 | | - $triggerText = Xml::tags( 'span', array( 'class' => 'lqt-thread-actions-icon' ), |
| 960 | + $triggerText = Xml::tags( 'a', array( 'class' => 'lqt-thread-actions-icon', |
| 961 | + 'href' => '#' ), |
961 | 962 | wfMsgHTML( 'lqt-menu-trigger' ) ); |
962 | 963 | $dropDownTrigger = Xml::tags( 'div', |
963 | 964 | array( 'class' => 'lqt-thread-actions-trigger ' . |
Index: trunk/extensions/LiquidThreads/lqt.js |
— | — | @@ -356,6 +356,7 @@ |
357 | 357 | trigger.click( |
358 | 358 | function(e) { |
359 | 359 | e.stopImmediatePropagation(); |
| 360 | + e.preventDefault(); |
360 | 361 | |
361 | 362 | // Hide the other menus |
362 | 363 | $j('.lqt-thread-toolbar-command-list').not(menu).hide('fast'); |