Index: trunk/extensions/MoodBar/modules/ext.moodBar/ext.moodBar.core.js |
— | — | @@ -122,7 +122,7 @@ |
123 | 123 | .removeClass( 'mw-moodBar-selected' ) |
124 | 124 | .removeClass( 'mw-moodBar-happy-selected' ) |
125 | 125 | .removeClass( 'mw-moodBar-sad-selected' ) |
126 | | - .removeClass( 'mw-moodBar-confused-selected' ); |
| 126 | + .removeClass( 'mw-moodBar-confused-selected' ); |
127 | 127 | mb.validate(); |
128 | 128 | } ) |
129 | 129 | .get( 0 ) |
— | — | @@ -155,7 +155,7 @@ |
156 | 156 | $el.slideDown( 'fast' ); |
157 | 157 | $trigger.html( mw.msg( 'moodbar-what-expanded' ) ); |
158 | 158 | } |
159 | | - } ) |
| 159 | + } ); |
160 | 160 | } ) |
161 | 161 | .end() |
162 | 162 | .find( '.mw-moodBar-overlayWhatContent' ) |
— | — | @@ -177,7 +177,7 @@ |
178 | 178 | new mw.html.Raw( out ) |
179 | 179 | ); |
180 | 180 | |
181 | | - disableMsg = mw.msg( 'moodbar-disable-link' ) |
| 181 | + disableMsg = mw.msg( 'moodbar-disable-link' ); |
182 | 182 | disableLink = mw.html.element( 'a', { |
183 | 183 | 'href' : '#', |
184 | 184 | 'class' : 'mw-moodBar-disable' |
— | — | @@ -281,7 +281,7 @@ |
282 | 282 | newWidth = titleWidth; |
283 | 283 | } |
284 | 284 | |
285 | | - mb.ui.overlay.width(newWidth); |
| 285 | + mb.ui.overlay.width(newWidth); |
286 | 286 | mb.ui.overlay.hide(); |
287 | 287 | |
288 | 288 | // Bind triger |
Index: trunk/extensions/MoodBar/modules/ext.moodBar.dashboard/ext.moodBar.dashboard.js |
— | — | @@ -77,7 +77,7 @@ |
78 | 78 | .end() |
79 | 79 | .append( $( '<span>' ).text( text ) ); |
80 | 80 | } |
81 | | - |
| 81 | + |
82 | 82 | /** |
83 | 83 | * Load a set of 20 comments into the list. In 'filter' mode, the list is |
84 | 84 | * blanked before the new comments are loaded. In 'more' mode, the comments are |
— | — | @@ -139,7 +139,7 @@ |
140 | 140 | return; |
141 | 141 | } |
142 | 142 | |
143 | | - var comments = data.query.moodbarcomments, |
| 143 | + var comments = data.query.moodbarcomments, |
144 | 144 | len = comments.length, |
145 | 145 | $ul = $( '#fbd-list' ), |
146 | 146 | moreResults = false, |