Changeset 1287544
- Timestamp:
- 11/17/2015 04:22:16 AM (10 years ago)
- Location:
- end-of-adblock-cycle/trunk
- Files:
-
- 2 edited
-
end-of-adblock-cycle.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
end-of-adblock-cycle/trunk/end-of-adblock-cycle.php
r1286026 r1287544 4 4 Plugin URI: https://wordpress.org/plugins/end-of-adblock-cycle/ 5 5 Description: Adblockなど広告を非表示にしてるユーザーへの警告や、ユーザー数の把握 6 Version: 1. 06 Version: 1.1 7 7 Author: oxynotes 8 8 Author URI: http://oxynotes.com … … 351 351 $fa_filename = plugins_url( 'js/' . $setting["rand_str"] . '.js', __FILE__ ); 352 352 $bu_filename = plugins_url( 'js/jquery.blockUI.js', __FILE__ ); 353 $fao_filename = plugins_url( 'js/fuckadblock.js', __FILE__ ); 354 wp_enqueue_script( 'jquery' ); 355 wp_enqueue_script( $setting["rand_str"], $fa_filename ); 356 wp_enqueue_script( 'jquery.blockUI.js', $bu_filename ); 357 wp_enqueue_script( 'fuckadblock.js', $fao_filename ); 353 wp_enqueue_script( $setting["rand_str"], $fa_filename, array( 'jquery' ) ); 354 wp_enqueue_script( 'jquery.blockUI.js', $bu_filename, array( 'jquery' ) ); 358 355 } 359 356 … … 431 428 backgroundColor: '<?php echo $setting["background_color"]; ?>', <?php // オーバーレイの背景色 ?> 432 429 opacity: <?php echo $setting["opacity"]*0.01; ?>, <?php // オーバーレイの透明度 ?> 433 } 430 }, 431 <?php // zindex対策 ?> 432 baseZ: 9999 434 433 }); 435 434 … … 453 452 <?php // オーバーレイの透明度 ?> 454 453 opacity: <?php echo $setting["opacity"]*0.01; ?> 455 } 454 }, 455 <?php // zindex対策 ?> 456 baseZ: 9999 456 457 }); 457 458 … … 464 465 <?php // オーバーレイの透明度 ?> 465 466 opacity: <?php echo $setting["opacity"]*0.01; ?> 466 } 467 }, 468 <?php // zindex対策 ?> 469 baseZ: 9999 467 470 }); 468 471 <?php endif; ?> -
end-of-adblock-cycle/trunk/readme.txt
r1286027 r1287544 5 5 Requires at least: 4.3.1 6 6 Tested up to: 4.3.1 7 Stable tag: 1. 07 Stable tag: 1.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 87 87 == Changelog == 88 88 89 1.1 90 jQueryの呼び出し方変更。一部テーマ用のzindex対策。 91 89 92 1.0 90 93 初めのバージョン。
Note: See TracChangeset
for help on using the changeset viewer.