Index: trunk/extensions/UploadWizard/resources/mw.UploadWizardDeed.js |
— | — | @@ -152,14 +152,11 @@ |
153 | 153 | // synchronize both username signatures |
154 | 154 | // set initial value to configured username |
155 | 155 | // if one changes all the others change (keyup event) |
156 | | - // |
157 | | - // also set tooltips ( the title, tipsy() ) |
158 | 156 | $formFields.find( '.mwe-upwiz-sign' ) |
159 | 157 | .attr( { |
160 | 158 | title: gM( 'mwe-upwiz-tooltip-sign' ), |
161 | 159 | value: mw.UploadWizard.config[ 'userName' ] |
162 | 160 | } ) |
163 | | - .tipsyPlus() |
164 | 161 | .keyup( function() { |
165 | 162 | var thisInput = this; |
166 | 163 | var thisVal = $j( thisInput ).val(); |
— | — | @@ -222,12 +219,10 @@ |
223 | 220 | _this.uploadCount = uploadCount ? uploadCount : 1; |
224 | 221 | _this.sourceInput = $j('<textarea class="mwe-source mwe-long-textarea" name="source" rows="1" cols="40"></textarea>' ) |
225 | 222 | .growTextArea() |
226 | | - .attr( 'title', gM( 'mwe-upwiz-tooltip-source' ) ) |
227 | | - .tipsyPlus(); |
| 223 | + .attr( 'title', gM( 'mwe-upwiz-tooltip-source' ) ); |
228 | 224 | _this.authorInput = $j('<textarea class="mwe-author mwe-long-textarea" name="author" rows="1" cols="40"></textarea>' ) |
229 | 225 | .growTextArea() |
230 | | - .attr( 'title', gM( 'mwe-upwiz-tooltip-author' ) ) |
231 | | - .tipsyPlus(); |
| 226 | + .attr( 'title', gM( 'mwe-upwiz-tooltip-author' ) ); |
232 | 227 | licenseInputDiv = $j( '<div class="mwe-upwiz-deed-license"></div>' ); |
233 | 228 | _this.licenseInput = new mw.UploadWizardLicenseInput( licenseInputDiv ); |
234 | 229 | |