Plugin Directory

Changeset 1287544


Ignore:
Timestamp:
11/17/2015 04:22:16 AM (10 years ago)
Author:
oxynotes
Message:

1.1コミット

Location:
end-of-adblock-cycle/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • end-of-adblock-cycle/trunk/end-of-adblock-cycle.php

    r1286026 r1287544  
    44Plugin URI: https://wordpress.org/plugins/end-of-adblock-cycle/
    55Description: Adblockなど広告を非表示にしてるユーザーへの警告や、ユーザー数の把握
    6 Version: 1.0
     6Version: 1.1
    77Author: oxynotes
    88Author URI: http://oxynotes.com
     
    351351        $fa_filename = plugins_url( 'js/' . $setting["rand_str"] . '.js', __FILE__ );
    352352        $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' ) );
    358355    }
    359356
     
    431428            backgroundColor: '<?php echo $setting["background_color"]; ?>', <?php // オーバーレイの背景色 ?>
    432429            opacity: <?php echo $setting["opacity"]*0.01; ?>, <?php // オーバーレイの透明度 ?>
    433         }
     430        },
     431        <?php // zindex対策 ?>
     432        baseZ: 9999
    434433    });
    435434
     
    453452            <?php // オーバーレイの透明度 ?>
    454453            opacity: <?php echo $setting["opacity"]*0.01; ?>
    455         }
     454        },
     455        <?php // zindex対策 ?>
     456        baseZ: 9999
    456457    });
    457458
     
    464465            <?php // オーバーレイの透明度 ?>
    465466            opacity: <?php echo $setting["opacity"]*0.01; ?>
    466         }
     467        },
     468        <?php // zindex対策 ?>
     469        baseZ: 9999
    467470    });
    468471<?php endif; ?>
  • end-of-adblock-cycle/trunk/readme.txt

    r1286027 r1287544  
    55Requires at least: 4.3.1
    66Tested up to: 4.3.1
    7 Stable tag: 1.0
     7Stable tag: 1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8787== Changelog ==
    8888
     891.1
     90jQueryの呼び出し方変更。一部テーマ用のzindex対策。
     91
    89921.0
    9093初めのバージョン。
Note: See TracChangeset for help on using the changeset viewer.