Index: trunk/extensions/Survey/RELEASE-NOTES |
— | — | @@ -8,6 +8,7 @@ |
9 | 9 | 2011-xx-xx |
10 | 10 | |
11 | 11 | * Fixed issue with database index names causing update.php to fail when running after installation of Survey. |
| 12 | +* Fixed several IE JavaScript issues. |
12 | 13 | |
13 | 14 | === Version 0.1.1 === |
14 | 15 | 2011-09-18 |
Index: trunk/extensions/Survey/resources/ext.survey.special.survey.js |
— | — | @@ -172,7 +172,7 @@ |
173 | 173 | 'required': $this.attr( 'data-required' ) == '1', |
174 | 174 | 'id': $this.attr( 'data-id' ), |
175 | 175 | 'type': $this.attr( 'data-type' ), |
176 | | - 'answers': eval( $this.attr( 'data-answers' ) ), |
| 176 | + 'answers': eval( $this.attr( 'data-answers' ) ) |
177 | 177 | } ); |
178 | 178 | } ); |
179 | 179 | |
— | — | @@ -183,4 +183,4 @@ |
184 | 184 | |
185 | 185 | setup(); |
186 | 186 | |
187 | | -} ); })( jQuery, window.mediaWiki, window.survey ); |
\ No newline at end of file |
| 187 | +} ); })( jQuery, window.mediaWiki, window.survey ); |
Index: trunk/extensions/Survey/resources/jquery.survey.js |
— | — | @@ -26,7 +26,7 @@ |
27 | 27 | }; |
28 | 28 | |
29 | 29 | if ( options.requireEnabled ) { |
30 | | - requestArgs['suenabled'] = 1; |
| 30 | + requestArgs.suenabled = 1; |
31 | 31 | } |
32 | 32 | |
33 | 33 | requestArgs[ 'su' + this.identifierType + 's' ] = this.identifier; |
— | — | @@ -111,7 +111,7 @@ |
112 | 112 | $input = $( '<input />' ).attr( { |
113 | 113 | 'id': id, |
114 | 114 | 'type': 'checkbox', |
115 | | - 'class': 'question-input survey-check', |
| 115 | + 'class': 'question-input survey-check' |
116 | 116 | } ); |
117 | 117 | break; |
118 | 118 | } |
— | — | @@ -257,7 +257,7 @@ |
258 | 258 | } ).html( $( '<div />' ).attr( { 'id': 'survey-' + surveyData.id } ).html( this.getSurveyBody( surveyData ) ) ); |
259 | 259 | |
260 | 260 | $link = $( '<a />' ).attr( { |
261 | | - 'href': '#survey-' + surveyData.id, |
| 261 | + 'href': '#survey-' + surveyData.id |
262 | 262 | } ).html( $div ); |
263 | 263 | |
264 | 264 | $( this ).html( $link ); |