Index: trunk/extensions/MoodBar/modules/ext.moodBar/ext.moodBar.init.js |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | var browserDisabled = false; |
20 | 20 | var clientInfo = $.client.profile(); |
21 | 21 | |
22 | | - if ( clientInfo.name == 'msie' && clientInfo.versionNumber < 9 ) { |
| 22 | + if ( clientInfo.name == 'msie' && clientInfo.versionNumber < 7 ) { |
23 | 23 | browserDisabled = true; |
24 | 24 | } |
25 | 25 | |
Index: trunk/extensions/MoodBar/modules/ext.moodBar/ext.moodBar.core.js |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | <div class="mw-moodBar-overlayContent"></div>\ |
18 | 18 | </div></div>', |
19 | 19 | userinput: '\ |
20 | | - <div class="mw-moodBar-overlayTitle"><html:msg key="INTROTITLE" /></div>\ |
| 20 | + <div class="mw-moodBar-overlayTitle"><span><html:msg key="INTROTITLE" /></span></div>\ |
21 | 21 | <div class="mw-moodBar-types-container">\ |
22 | 22 | <div class="mw-moodBar-types"></div>\ |
23 | 23 | </div>\ |
— | — | @@ -41,7 +41,7 @@ |
42 | 42 | type: '\ |
43 | 43 | <span class="mw-moodBar-type mw-moodBar-type-$1" rel="$1">\ |
44 | 44 | <span class="mw-moodBar-typeTitle"><html:msg key="moodbar-type-$1-title" /></span>\ |
45 | | - </div>', |
| 45 | + </span>', |
46 | 46 | loading: '\ |
47 | 47 | <div class="mw-moodBar-state mw-moodBar-state-loading">\ |
48 | 48 | <div class="mw-moodBar-state-title"><html:msg key="moodbar-loading-title" /></div>\ |
— | — | @@ -240,7 +240,7 @@ |
241 | 241 | .find('.mw-moodBar-types') |
242 | 242 | .width() + 140; |
243 | 243 | var titleWidth = mb.ui.overlay |
244 | | - .find('.mw-moodBar-overlayTitle') |
| 244 | + .find('.mw-moodBar-overlayTitle span') |
245 | 245 | .width() + 100; |
246 | 246 | |
247 | 247 | if ( newWidth < titleWidth ) { |