Index: branches/MwEmbedStandAlone/modules/TimedText/mw.TimedText.js |
— | — | @@ -284,8 +284,8 @@ |
285 | 285 | getInterfaceSizePercent: function( size ) { |
286 | 286 | // Some arbitrary scale relative to window size ( 400px wide is text size 105% ) |
287 | 287 | var textSize = size.width / 5; |
288 | | - if( textSize < 95 ) textSize = 95; |
289 | | - if( textSize > 200 ) textSize = 200; |
| 288 | + if( textSize < 110 ) textSize = 110; |
| 289 | + if( textSize > 220 ) textSize = 220; |
290 | 290 | return textSize; |
291 | 291 | }, |
292 | 292 | |