Plugin Directory

Changeset 890679


Ignore:
Timestamp:
04/10/2014 04:44:27 PM (12 years ago)
Author:
easyvideoplayer
Message:

Updating to 1.1.3

Location:
wp-evs/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-evs/trunk/readme.txt

    r794673 r890679  
    33Tags: video, evs, easy video suite, easyvideosuite
    44Requires at least: 2.8
    5 Tested up to: 3.6.1
     5Tested up to: 3.8.2
    66Stable tag: trunk
    77
     
    4141== Changelog ==
    4242
     43= 1.1.3 =
     44* Fixed support for deep nesting of folders
     45* Added scrollbars to better navigate large lists of files/folders
     46
    4347= 1.1.2 =
    4448* Improved CSS to try and prevent theme conflicts
  • wp-evs/trunk/scripts/remote_video.html

    r792914 r890679  
    1919    #wp_evs_form    .title { color: #000; font-size: 14px; margin: 0 0 10px 0; }
    2020   
    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; }
    2222    #wp_evs_folders { width: 280px; margin: 0 10px 0 0; float: left; }
    2323    #wp_evs_files { width: 465px; float: left; }
     
    4646    #wp_evs_folders tbody tr a { text-decoration: none; }
    4747    #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; }
    4955   
    5056    #wp_evs_files thead tr td { padding: 5px 10px 5px 0; }
     
    135141                    }
    136142                   
    137                     var folder_arr = {};
     143                    var folder_arr = {}, subfolder_arr = {}, handled_subs = [];
    138144                   
    139145                    // Create the folders
     
    144150                        f.appendTo($('#wp_evs_folders tbody'));
    145151                        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;
    147154                    });
    148155                   
     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                    /*
    149173                    $.each(folder_arr, function(idx, folder) {
    150174                        if(folder.parent_id && $('#evs-folder-'+folder.parent_id).length >= 1) {
     
    153177                        }
    154178                    });
     179                    */
    155180                   
    156181                    var link_preview = (response.version == '3.0' ? '/admin/files.embed.php' : '/account/files_preview.php');
  • wp-evs/trunk/wp-evs.php

    r794673 r890679  
    44Plugin URI: http://easyvideosuite.com/
    55Description: Plugin to easily embed EasyVideoSuite videos into WordPress posts!
    6 Date: 2013, October, 28
     6Date: 2014, April, 10
    77Author: WebActix
    88Author URI: http://webactix.com
    9 Version: 1.1.2
     9Version: 1.1.3
    1010*/
    1111
Note: See TracChangeset for help on using the changeset viewer.