Index: branches/MwEmbedStandAlone/modules/SmilPlayer/mw.SmilLayout.js |
— | — | @@ -437,7 +437,7 @@ |
438 | 438 | |
439 | 439 | var request = { |
440 | 440 | 'action' : 'parse', |
441 | | - 'text': wikiTextTemplateCall, |
| 441 | + 'text': wikiTextTemplateCall |
442 | 442 | }; |
443 | 443 | // Check if we have the titleKey for the sequence and use that as context title |
444 | 444 | var titleKey = this.smil.getEmbedPlayer().apiTitleKey; |
— | — | @@ -618,13 +618,13 @@ |
619 | 619 | if( img.naturalWidth ){ |
620 | 620 | callback( { |
621 | 621 | 'width' : img.naturalWidth, |
622 | | - 'height' : img.naturalHeight, |
| 622 | + 'height' : img.naturalHeight |
623 | 623 | } ) |
624 | 624 | } else { |
625 | 625 | $j( img ).load(function(){ |
626 | 626 | callback( { |
627 | 627 | 'width' : this.naturalWidth, |
628 | | - 'height' : this.naturalHeight, |
| 628 | + 'height' : this.naturalHeight |
629 | 629 | } ) |
630 | 630 | }); |
631 | 631 | } |
— | — | @@ -967,7 +967,7 @@ |
968 | 968 | |
969 | 969 | // convert named font sizes to em: |
970 | 970 | if( this.emFontSizeMap[ cssAttributes['font-size'] ] ){ |
971 | | - cssAttributes['font-size'] = sizeMap[ cssAttributes['font-size'] ]; |
| 971 | + cssAttributes['font-size'] = this.emFontSizeMap[ cssAttributes['font-size'] ]; |
972 | 972 | } |
973 | 973 | |
974 | 974 | // If the font size is pixel based parent span will have no effect, |