Index: trunk/extensions/MetavidWiki/skins/mv_common.js |
— | — | @@ -15,11 +15,9 @@ |
16 | 16 | $j(this).css('border','solid red'); |
17 | 17 | do_video_time_update( $j('#mv_end_hr_'+mvd_id).val(), $j('#mv_end_hr_'+mvd_id).val() ); |
18 | 18 | },out:function(){ |
19 | | - //@@todo restore "undefined |
20 | | - $j(this).get(0).style.border=null; |
| 19 | + $j(this).css('border','none'); |
21 | 20 | do_video_time_update($j('#mv_start_hr_'+mvd_id).val(), $j('#mv_end_hr_'+mvd_id).val() ); |
22 | | - }}); |
23 | | - |
| 21 | + }}); |
24 | 22 | //add onchange js hooks: |
25 | 23 | $j('.mv_adj_hr').change(function(){ |
26 | 24 | //preserve track duration for nav and seq: |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/jquery/plugins/jquery.autocomplete.js |
— | — | @@ -264,10 +264,11 @@ |
265 | 265 | // if the field no longer has focus or if there are no matches, do not display the drop down |
266 | 266 | if( !hasFocus || data.length == 0 ) return hideResultsNow(); |
267 | 267 | |
268 | | - if ($.browser.msie) { |
| 268 | + //messes with layout & ie7 does not have this problem |
| 269 | + /*if ($.browser.msie) { |
269 | 270 | // we put a styled iframe behind the calendar so HTML SELECT elements don't show through |
270 | 271 | $results.append(document.createElement('iframe')); |
271 | | - } |
| 272 | + }*/ |
272 | 273 | results.appendChild(dataToDom(data)); |
273 | 274 | // autofill in the complete box w/the first match as long as the user hasn't entered in more data |
274 | 275 | if( options.autoFill && ($input.val().toLowerCase() == q.toLowerCase()) ) autoFill(data[0][0]); |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/mv_embed.js |
— | — | @@ -819,21 +819,15 @@ |
820 | 820 | text_clip.start + ' to ' +text_clip.end+ |
821 | 821 | '</div>'+ |
822 | 822 | text_clip.body + |
823 | | - '</div>'; |
824 | | - |
825 | | - if($j('#mmbody_'+this.pe.id).length==0)this.show(); |
826 | | - |
| 823 | + '</div>'; |
| 824 | + if($j('#mmbody_'+this.pe.id).length==0)this.show(); |
827 | 825 | $j('#mmbody_'+this.pe.id +' .mvtt').each(function(){ |
828 | | - js_log('searching for insert point..'); |
829 | 826 | if(!inserted){ |
830 | 827 | js_log( ntp2seconds($j(this).attr('start')) + ' > ' + text_clip_start_time); |
831 | 828 | if( ntp2seconds($j(this).attr('start')) > text_clip_start_time){ |
832 | | - inserted=true; |
833 | | - |
| 829 | + inserted=true; |
834 | 830 | $j(this).before(insertHTML); |
835 | 831 | } |
836 | | - }else{ |
837 | | - js_log('already inserted') |
838 | 832 | } |
839 | 833 | }); |
840 | 834 | //js_log('should just append: '+insertHTML); |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/images/cancel.png |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: trunk/extensions/MetavidWiki/skins/mv_embed/images/cancel.png |
___________________________________________________________________ |
Added: svn:mime-type |
841 | 835 | + application/octet-stream |