Changeset 890679
- Timestamp:
- 04/10/2014 04:44:27 PM (12 years ago)
- Location:
- wp-evs/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
scripts/remote_video.html (modified) (5 diffs)
-
wp-evs.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-evs/trunk/readme.txt
r794673 r890679 3 3 Tags: video, evs, easy video suite, easyvideosuite 4 4 Requires at least: 2.8 5 Tested up to: 3. 6.15 Tested up to: 3.8.2 6 6 Stable tag: trunk 7 7 … … 41 41 == Changelog == 42 42 43 = 1.1.3 = 44 * Fixed support for deep nesting of folders 45 * Added scrollbars to better navigate large lists of files/folders 46 43 47 = 1.1.2 = 44 48 * Improved CSS to try and prevent theme conflicts -
wp-evs/trunk/scripts/remote_video.html
r792914 r890679 19 19 #wp_evs_form .title { color: #000; font-size: 14px; margin: 0 0 10px 0; } 20 20 21 #wp_evs_folders, #wp_evs_files { margin: 0 0 10px 0; background: #fff; border: 1px solid #cccccc; }21 #wp_evs_folders, #wp_evs_files { margin: 0 0 10px 0; background: #fff; border: 1px solid #cccccc; height: 359px; overflow: scroll; } 22 22 #wp_evs_folders { width: 280px; margin: 0 10px 0 0; float: left; } 23 23 #wp_evs_files { width: 465px; float: left; } … … 46 46 #wp_evs_folders tbody tr a { text-decoration: none; } 47 47 #wp_evs_folders tbody tr.subfolder { } 48 #wp_evs_folders tbody tr.subfolder td:first-child { padding-left: 20px; } 48 #wp_evs_folders tbody tr.subfolder-depth-0 td:first-child { padding-left: 20px; } 49 #wp_evs_folders tbody tr.subfolder-depth-1 td:first-child { padding-left: 40px; } 50 #wp_evs_folders tbody tr.subfolder-depth-2 td:first-child { padding-left: 60px; } 51 #wp_evs_folders tbody tr.subfolder-depth-3 td:first-child { padding-left: 80px; } 52 #wp_evs_folders tbody tr.subfolder-depth-4 td:first-child { padding-left: 100px; } 53 #wp_evs_folders tbody tr.subfolder-depth-5 td:first-child { padding-left: 120px; } 54 #wp_evs_folders tbody tr.subfolder-depth-6 td:first-child { padding-left: 140px; } 49 55 50 56 #wp_evs_files thead tr td { padding: 5px 10px 5px 0; } … … 135 141 } 136 142 137 var folder_arr = {} ;143 var folder_arr = {}, subfolder_arr = {}, handled_subs = []; 138 144 139 145 // Create the folders … … 144 150 f.appendTo($('#wp_evs_folders tbody')); 145 151 folder.el = f; 146 folder_arr[idx] = folder; 152 folder_arr[folder.folder_id || folder.id] = folder; 153 if(folder.parent_id) subfolder_arr[folder.folder_id || folder.id] = folder; 147 154 }); 148 155 156 $.each(subfolder_arr, function(idx, folder) { 157 var parent = $('#evs-folder-'+folder.parent_id), depth = 0; 158 if(parent.length >= 1) { 159 160 var search = folder.parent_id; 161 while(folder_arr[search].parent_id != null) { 162 search = folder_arr[search].parent_id; 163 depth++; 164 } 165 166 folder.el.insertAfter($('#evs-folder-'+folder.parent_id)); 167 folder.el.addClass('subfolder subfolder-depth-'+depth); 168 handled_subs.push(idx); 169 } 170 }); 171 172 /* 149 173 $.each(folder_arr, function(idx, folder) { 150 174 if(folder.parent_id && $('#evs-folder-'+folder.parent_id).length >= 1) { … … 153 177 } 154 178 }); 179 */ 155 180 156 181 var link_preview = (response.version == '3.0' ? '/admin/files.embed.php' : '/account/files_preview.php'); -
wp-evs/trunk/wp-evs.php
r794673 r890679 4 4 Plugin URI: http://easyvideosuite.com/ 5 5 Description: Plugin to easily embed EasyVideoSuite videos into WordPress posts! 6 Date: 201 3, October, 286 Date: 2014, April, 10 7 7 Author: WebActix 8 8 Author URI: http://webactix.com 9 Version: 1.1. 29 Version: 1.1.3 10 10 */ 11 11
Note: See TracChangeset
for help on using the changeset viewer.