Changeset 1951074
- Timestamp:
- 10/03/2018 07:49:33 PM (8 years ago)
- Location:
- adbutler/trunk
- Files:
-
- 2 edited
-
adbutler.php (modified) (2 diffs)
-
js/adbutler.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
adbutler/trunk/adbutler.php
r1948203 r1951074 5 5 Plugin URI: https://wordpress.org/plugins/adbutler 6 6 Description: AdButler ad management system integration plugin. Simplify deployment of your ad zones with this highly effective manner of deploying your publishing needs 7 Version: 1.1 87 Version: 1.19 8 8 Author: AdButler 9 9 Author URI: http://www.adbutler.com … … 23 23 define( 'ADBUTLER_CACHEURL', ADBUTLER_URLPATH . 'cache/' ); 24 24 define( 'ADBUTLER_ADSERVE_URL','https://adbutler.com/external_request.spark'); 25 define( 'ADBUTLER_PLUGIN_VERSION', '1.1 8');25 define( 'ADBUTLER_PLUGIN_VERSION', '1.19'); 26 26 27 27 -
adbutler/trunk/js/adbutler.js
r1948203 r1951074 16 16 } 17 17 18 if ($('.adbutler_widget, .adbutler_settings').length > 0 ||($("[id^='customize-control-widget_adbutler-']") )) {18 if ($('.adbutler_widget, .adbutler_settings').length > 0 ||($("[id^='customize-control-widget_adbutler-']").length > 0)) { 19 19 adbutler.populate_zone_lists(); 20 20 } … … 31 31 32 32 var category_restrict_checkbox = $('#adbutler_restrict_to_pages'); 33 if (category_restrict_checkbox ) adbutler.handle_category_restrict(category_restrict_checkbox[0]);33 if (category_restrict_checkbox.length > 0) adbutler.handle_category_restrict(category_restrict_checkbox[0]); 34 34 }, 35 35 badKey:function(){
Note: See TracChangeset
for help on using the changeset viewer.