Index: branches/MwEmbedStandAlone/modules/EmbedPlayer/mw.EmbedPlayer.js |
— | — | @@ -2283,7 +2283,7 @@ |
2284 | 2284 | .css( { |
2285 | 2285 | 'display' : 'none', |
2286 | 2286 | 'position' : 'absolute', |
2287 | | - 'zindex' : 2, |
| 2287 | + 'z-index' : 2, |
2288 | 2288 | 'top' : '0px', |
2289 | 2289 | 'left' : '0px' |
2290 | 2290 | }) |
— | — | @@ -2293,7 +2293,7 @@ |
2294 | 2294 | // once faded in remove org and rename new: |
2295 | 2295 | $j( '#img_thumb_' + _this.id ).remove(); |
2296 | 2296 | $j( '#new_img_thumb_' + _this.id ).attr( 'id', 'img_thumb_' + _this.id ); |
2297 | | - $j( '#img_thumb_' + _this.id ).css( 'zindex', '1' ); |
| 2297 | + $j( '#img_thumb_' + _this.id ).css( 'z-index', '1' ); |
2298 | 2298 | _this.thumbnail_updating = false; |
2299 | 2299 | // mw.log("done fadding in "+ $j('#img_thumb_'+_this.id).attr("src")); |
2300 | 2300 | |