Changeset 28023
- Timestamp:
- 04/07/2014 10:27:06 PM (12 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 3 edited
-
js/mediaelement/wp-mediaelement.css (modified) (1 diff)
-
js/mediaelement/wp-playlist.js (modified) (1 diff)
-
media.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/mediaelement/wp-mediaelement.css
r27895 r28023 105 105 font-size: 14px; 106 106 line-height: 1.5; 107 } 108 109 .wp-playlist-item .wp-playlist-caption { 110 text-decoration: none; 111 color: #000; 107 112 } 108 113 -
trunk/src/wp-includes/js/mediaelement/wp-playlist.js
r27895 r28023 108 108 109 109 clickTrack : function (e) { 110 e.preventDefault(); 111 110 112 this.index = this.$( '.wp-playlist-item' ).index( e.currentTarget ); 111 113 this.setCurrent(); -
trunk/src/wp-includes/media.php
r28004 r28023 1028 1028 <script type="text/html" id="tmpl-wp-playlist-item"> 1029 1029 <div class="wp-playlist-item"> 1030 < div class="wp-playlist-caption">1030 <a class="wp-playlist-caption" href="{{ data.src }}"> 1031 1031 {{ data.index ? ( data.index + '. ' ) : '' }} 1032 1032 <# if ( data.caption ) { #> … … 1038 1038 <# } #> 1039 1039 <# } #> 1040 </ div>1040 </a> 1041 1041 <# if ( data.meta.length_formatted ) { #> 1042 1042 <div class="wp-playlist-item-length">{{ data.meta.length_formatted }}</div>
Note: See TracChangeset
for help on using the changeset viewer.