Index: branches/MwEmbedStandAlone/modules/EmbedPlayer/skins/mw.PlayerControlBuilder.js |
— | — | @@ -707,7 +707,7 @@ |
708 | 708 | .fadeOut( animateDuration ); |
709 | 709 | //mw.log('about to trigger hide control bar') |
710 | 710 | // Allow interface items to update: |
711 | | - $j( this.embedPlayer ).trigger('onHideControlBar', {'bottom' : 10} ); |
| 711 | + $j( this.embedPlayer ).trigger('onHideControlBar', {'bottom' : 15} ); |
712 | 712 | |
713 | 713 | }, |
714 | 714 | |
— | — | @@ -728,7 +728,7 @@ |
729 | 729 | .fadeIn( animateDuration ); |
730 | 730 | |
731 | 731 | // Trigger the screen overlay with layout info: |
732 | | - $j( this.embedPlayer ).trigger( 'onShowControlBar', {'bottom' : this.getHeight() + 10 } ); |
| 732 | + $j( this.embedPlayer ).trigger( 'onShowControlBar', {'bottom' : this.getHeight() + 15 } ); |
733 | 733 | }, |
734 | 734 | |
735 | 735 | /** |
Index: branches/MwEmbedStandAlone/modules/TimedText/mw.TimedText.js |
— | — | @@ -148,7 +148,7 @@ |
149 | 149 | |
150 | 150 | // Resize the timed text font size per window width |
151 | 151 | $j( embedPlayer ).bind( 'onCloseFullScreen onOpenFullScreen', function() { |
152 | | - var textOffset = _this.embedPlayer.controlBuilder.fullscreenMode ? 30 : 10; |
| 152 | + var textOffset = _this.embedPlayer.controlBuilder.fullscreenMode ? 35 : 15; |
153 | 153 | |
154 | 154 | mw.log( 'TimedText::set text size for: : ' + embedPlayer.$interface.width() + ' = ' + _this.getInterfaceSizeTextCss({ |
155 | 155 | 'width' : embedPlayer.$interface.width(), |
— | — | @@ -188,7 +188,7 @@ |
189 | 189 | embedPlayer.$interface.find( '.track' ) |
190 | 190 | .stop() |
191 | 191 | .animate( layout, 'fast' ); |
192 | | - }); |
| 192 | + }); |
193 | 193 | |
194 | 194 | }, |
195 | 195 | /** |
— | — | @@ -1084,7 +1084,7 @@ |
1085 | 1085 | }) |
1086 | 1086 | ).css({ |
1087 | 1087 | 'line-height' : '1.6em' |
1088 | | - }) |
| 1088 | + }); |
1089 | 1089 | |
1090 | 1090 | $playerTarget.append( $track ); |
1091 | 1091 | |