Changeset 875885
- Timestamp:
- 03/15/2014 12:01:06 PM (12 years ago)
- Location:
- bmo-expo/trunk
- Files:
-
- 3 edited
-
bmo_expo.php (modified) (2 diffs)
-
classes/admin/tinyMCEWindow.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bmo-expo/trunk/bmo_expo.php
r859673 r875885 6 6 Author: Benedikt Morschheuser 7 7 Author URI: http://bmo-design.de/ 8 Version: 1.0.1 28 Version: 1.0.13 9 9 10 10 Copyright 2012-2013 by Benedikt Morschheuser (http://bmo-design.de/kontakt/) … … 33 33 //############################################################### 34 34 35 define('BMO_EXPO_VERSION','1.0.1 2');//version35 define('BMO_EXPO_VERSION','1.0.13');//version 36 36 define('BMO_EXPO_SITEBASE_URL', get_option('siteurl')); 37 37 define('BMO_EXPO_PLUGINNAME', trim(plugin_basename(dirname(__FILE__)))); -
bmo-expo/trunk/classes/admin/tinyMCEWindow.php
r823472 r875885 189 189 var key = $(option).attr('name').replace('options_bmo_expo[','').replace('][value]',''); 190 190 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 } 192 200 } 193 201 }); -
bmo-expo/trunk/readme.txt
r859673 r875885 92 92 93 93 = Version 1.0 = 94 * 1.0.13 Checkbox Fix for NextGen Gallery Version 94 95 * 1.0.12 CSS Safari Fix 95 96 * 1.0.11 Fix for passing no attributes
Note: See TracChangeset
for help on using the changeset viewer.