Plugin Directory

Changeset 1017929


Ignore:
Timestamp:
11/01/2014 02:57:05 PM (11 years ago)
Author:
aesqe
Message:

1.7.9.8 - a few JS bugfixes

Location:
file-gallery
Files:
165 added
4 edited

Legend:

Unmodified
Added
Removed
  • file-gallery/trunk/file-gallery.php

    r983219 r1017929  
    33Plugin Name: File Gallery
    44Plugin URI: http://skyphe.org/code/wordpress/file-gallery/
    5 Version: 1.7.9.6
     5Version: 1.7.9.8
    66Description: "File Gallery" extends WordPress' media (attachments) capabilities by adding a new gallery shortcode handler with templating support, a new interface for attachment handling when editing posts, and much more.
    77Author: Bruno "Aesqe" Babic
     
    3232 */
    3333
    34 define('FILE_GALLERY_VERSION', '1.7.9.6');
     34define('FILE_GALLERY_VERSION', '1.7.9.8');
    3535define('FILE_GALLERY_DEFAULT_TEMPLATES', serialize( array('default', 'file-gallery', 'list', 'simple') ) );
    3636
  • file-gallery/trunk/js/file-gallery-media.js

    r983219 r1017929  
    44{
    55    "use strict";
     6
     7    if( ! wp || ! wp.media ) {
     8        return;
     9    }
    610
    711    var responseContainerAdded = false;
  • file-gallery/trunk/js/file-gallery.js

    r971509 r1017929  
    1010{
    1111    "use strict";
     12
     13    if( ! wp || ! wp.media ) {
     14        return;
     15    }
    1216
    1317    $.extend(file_gallery,
     
    21342138            file_gallery.init();
    21352139        });
    2136 
     2140       
    21372141        jQuery("body").on("tb_unload", "#TB_window", function()
    21382142        {
  • file-gallery/trunk/readme.txt

    r984587 r1017929  
    55Requires at least: 3.5
    66Tested up to: 4.0
    7 Stable tag: 1.7.9.6
     7Stable tag: 1.7.9.8
    88
    99File Gallery extends WordPress media (attachments) capabilities
     
    169169
    170170== Changelog ==
     171
     172= 1.7.9.8 =
     173* November 1st, 2014
     174* a few JS bugfixes
    171175
    172176= 1.7.9.6 =
Note: See TracChangeset for help on using the changeset viewer.