Index: trunk/extensions/MetavidWiki/skins/mv_stream.js |
— | — | @@ -254,7 +254,7 @@ |
255 | 255 | }, |
256 | 256 | mvdOut:function(mvd_id){ |
257 | 257 | var vid_elm = $j('#embed_vid').get(0); |
258 | | - //only proccess out if in "stoped" state |
| 258 | + //only process out if in "stoped" state |
259 | 259 | if( vid_elm.isStoped() ){ |
260 | 260 | js_log('do out ' + mvd_id ); |
261 | 261 | this.cur_mvd_id='base'; |
— | — | @@ -301,7 +301,7 @@ |
302 | 302 | if(!vid_elm.onClipDone_disp){ |
303 | 303 | //only restore if the cur_mvd = 'base' and interface updates are not locked |
304 | 304 | if(this.cur_mvd_id=='base'){ |
305 | | - vid_elm.updateThumbnail(org_thum_src); |
| 305 | + vid_elm.updateThumbnail( org_thum_src ); |
306 | 306 | vid_elm.updateVideoTimeReq(org_vid_time_req); |
307 | 307 | //vid_elm.updateVideoSrc(org_vid_src); |
308 | 308 | $j('#mv_videoPlayerTime').html(org_vid_title); |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/mv_embed.js |
— | — | @@ -2537,13 +2537,13 @@ |
2538 | 2538 | //if(this.class)class_atr = ' class="'+this.class+'"'; |
2539 | 2539 | //if(this.style)style_atr = ' style="'+this.style+'"'; |
2540 | 2540 | // else style_atr = 'overflow:hidden;height:'+this.height+'px;width:'+this.width+'px;'; |
2541 | | - var thumbnail_src = this.media_element.getThumbnailURL(); |
| 2541 | + this.thumbnail = this.media_element.getThumbnailURL(); |
2542 | 2542 | |
2543 | 2543 | //put it all in the div container dc_id |
2544 | 2544 | thumb_html+= '<div id="dc_'+this.id+'" style="position:relative;'+ |
2545 | 2545 | ' overflow:hidden; top:0px; left:0px; width:'+this.playerPixelWidth()+'px; height:'+this.playerPixelHeight()+'px; z-index:0;">'+ |
2546 | 2546 | '<img width="'+this.playerPixelWidth()+'" height="'+this.playerPixelHeight()+'" style="position:relative;width:'+this.playerPixelWidth()+';height:'+this.playerPixelHeight()+'"' + |
2547 | | - ' id="img_thumb_'+this.id+'" src="' + thumbnail_src + '">'; |
| 2547 | + ' id="img_thumb_'+this.id+'" src="' + this.thumbnail + '">'; |
2548 | 2548 | |
2549 | 2549 | if(this.play_button==true) |
2550 | 2550 | thumb_html+=this.getPlayButton(); |