Plugin Directory

Changeset 875885


Ignore:
Timestamp:
03/15/2014 12:01:06 PM (12 years ago)
Author:
bmodesign2
Message:

1.0.13 Checkbox Fix for NextGen Gallery Version

Location:
bmo-expo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • bmo-expo/trunk/bmo_expo.php

    r859673 r875885  
    66Author: Benedikt Morschheuser
    77Author URI: http://bmo-design.de/
    8 Version: 1.0.12
     8Version: 1.0.13
    99
    1010Copyright 2012-2013 by Benedikt Morschheuser (http://bmo-design.de/kontakt/)
     
    3333//###############################################################
    3434
    35   define('BMO_EXPO_VERSION','1.0.12');//version 
     35  define('BMO_EXPO_VERSION','1.0.13');//version 
    3636  define('BMO_EXPO_SITEBASE_URL', get_option('siteurl'));
    3737  define('BMO_EXPO_PLUGINNAME', trim(plugin_basename(dirname(__FILE__))));
  • bmo-expo/trunk/classes/admin/tinyMCEWindow.php

    r823472 r875885  
    189189                        var key = $(option).attr('name').replace('options_bmo_expo[','').replace('][value]','');
    190190                        if(!(Object.prototype.hasOwnProperty.call(_parameterFromTagText[1], key))){
    191                             _parameterFromTagText[1][key] = $(option).val();
     191                            if($(option).is(':checkbox')){
     192                                if($(option).prop('checked')){
     193                                    _parameterFromTagText[1][key] = "1";
     194                                }else{
     195                                    _parameterFromTagText[1][key] = "0";
     196                                }
     197                            }else{
     198                                _parameterFromTagText[1][key] = $(option).val();
     199                            }
    192200                        }
    193201                    });
  • bmo-expo/trunk/readme.txt

    r859673 r875885  
    9292
    9393= Version 1.0 =
     94    * 1.0.13 Checkbox Fix for NextGen Gallery Version
    9495    * 1.0.12 CSS Safari Fix
    9596    * 1.0.11 Fix for passing no attributes
Note: See TracChangeset for help on using the changeset viewer.