Plugin Directory

Changeset 477721


Ignore:
Timestamp:
12/19/2011 08:54:08 PM (14 years ago)
Author:
CJ_Jackson
Message:

Updated to 0.2.2

Location:
html5avmanager
Files:
80 added
6 edited

Legend:

Unmodified
Added
Removed
  • html5avmanager/trunk/html5avmanager.php

    r476946 r477721  
    55  Plugin URI: http://cj-jackson.com/
    66  Description: A video manager with a Modal-View-Controller and video uploader.
    7   Version: 0.2.1
     7  Version: 0.2.2
    88  Author: Christopher John Jackson
    99  Author URI: http://cj-jackson.com/
  • html5avmanager/trunk/readme.txt

    r476946 r477721  
    55Requires at least: 2.7
    66Tested up to: 3.2
    7 Stable tag: 0.2.1
     7Stable tag: 0.2.2
    88
    99A HTML5 Audio and Video manager that take full advantage of
     
    5252
    53531. Options in Admin Sidebar.
    54 2. HTML5 AV Settings.
     542. HTML5 AV Settings, even allows you to use other html5 javascript library.
    55553. Add Audio.
    56564. Add Video.
    57575. HTML5 Audio & Video Manager with editor opened up.
    58586. The Post Widget.
     597. The View Editor, allow you to change html code and mediaelementjs settings.
    5960
    6061== Changelog ==
     62
     63= 0.2.2 =
     64* Improved appearance of View Editor and Textarea in Settings.
    6165
    6266= 0.2.1 =
  • html5avmanager/trunk/view/admin/settings-panel.php

    r476946 r477721  
    3939        <label for="html5av_manager_file_setting"><h3>setting.php</h3></label>
    4040        Please don't touch this, unless you are an advanced user or a nerd.
    41         <textarea id="html5av_manager_file_setting" cols="50" rows="10"
    42                   style="width: 100%; height: 25em;"
    43                   ><?php echo $file_setting ?></textarea>
     41        <span id="template">
     42            <textarea id="html5av_manager_file_setting" cols="50" rows="10"
     43                      style="width: 100%; height: 25em;"
     44                      ><?php echo $file_setting ?></textarea>
     45        </span>
    4446        <p class="submit" >
    4547            <input type="submit" class="button-primary" value="Save Changes to setting.php" />
  • html5avmanager/trunk/view/admin/view-editor.php

    r476946 r477721  
    66                   ><h3 id="html5av_view_editor_file_content_title"
    77                 >Placeholder</h3></label>
    8             <textarea cols="50" rows="10"
    9                       id="html5av_view_editor_file_content"
    10                       style="width: 100%; height: 35em"></textarea>
     8            <span id="template">
     9                <textarea cols="50" rows="10"
     10                          id="html5av_view_editor_file_content"
     11                          style="width: 100%; height: 35em"></textarea>
     12            </span>
    1113            <p class="submit" >
    12                 <input type="submit" class="button-primary" value="Save Changes" />
     14                <input id="html5av_manager_view_file_saved_button"
     15                    type="submit" class="button-primary" value="Save Changes" />
    1316                <span id="html5av_manager_view_file_saved" style="color: green"></span>
    1417            </p>
     
    3033               id="html5av_view_editor_new_view_title">
    3134        <p class="submit" >
    32             <input type="submit" class="button-primary" value="Save Changes" />
     35            <input type="submit" class="button-primary" value="Add New View" />
    3336            <span id="html5av_view_editor_new_view_saved" style="color: green"></span>
    3437        </p>
     
    5053            json = jQuery.parseJSON(json);
    5154            jQuery('#html5av_view_editor_file_content_title').text(json.filename);
     55            jQuery('#html5av_manager_view_file_saved_button').val('Save Changes to ' + json.filename);
    5256            jQuery('#html5av_view_editor_file_content').val(json.data);
    5357        });
Note: See TracChangeset for help on using the changeset viewer.