Plugin Directory

Changeset 883982


Ignore:
Timestamp:
03/29/2014 06:24:14 AM (12 years ago)
Author:
eflyjason
Message:

Fix Bugs

Location:
wp-header-notification/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-header-notification/trunk/readme.txt

    r883978 r883982  
    44Tags: Header, Notification
    55Requires at least: 3.0
    6 Tested up to: 3.8
     6Tested up to: 3.8.1
    77Stable tag: trunk
    88License: GPLv2 or later
     
    4343Extract all files from the ZIP file, making sure to keep the file structure intact, and then upload it to `/wp-content/plugins/`.
    4444
    45 This should result in the following file structure:
    46 
    47 `- wp-content
    48     - plugins
    49         - wp-header-notification
    50             - lang
    51                 | readme.txt
    52                 | wp-header-notification-zh_CN.mo
    53                 | wp-header-notification-zh_CN.po
    54                 | wp-header-notification-zh_TW.mo
    55                 | wp-header-notification-zh_TW.po
    56                 | wp-header-notification.pot
    57             | LICENSE
    58             | license.txt
    59             | options.php
    60             | readme.txt
    61             | script.js
    62             | style.css
    63             | wp-header-notification.php`
    64 
    6545Then just visit your admin area and activate the plugin.
    6646
     
    8262
    8363== Changelog ==
     64
     65**Version 1.2.4**
     66
     67* Fix Bugs.
    8468
    8569**Version 1.2.3**
  • wp-header-notification/trunk/script.js

    r883978 r883982  
    1010    wp_header_notification_set_cookie("close_wp_header_notification", true, parseInt(wp_header_notification_info.renotice_time));
    1111    window.open(wp_header_notification_info.button_link, "_blank");
     12    jQuery(document.getElementById('top_notice')).hide();
    1213}
    1314function wp_header_notification_pushdownclose(){
  • wp-header-notification/trunk/script.min.js

    r883978 r883982  
    1 function wp_header_notification_set_cookie(c_name,value,expiredays){var exdate=new Date();exdate.setDate(exdate.getDate()+expiredays);document.cookie=c_name+"="+escape(value)+((expiredays==null)?"":";expires="+exdate.toGMTString())}function wp_header_notification_pushdownyes(){wp_header_notification_set_cookie("close_wp_header_notification",true,parseInt(wp_header_notification_info.renotice_time));window.open(wp_header_notification_info.button_link,"_blank")}function wp_header_notification_pushdownclose(){wp_header_notification_set_cookie("close_wp_header_notification",true,parseInt(wp_header_notification_info.renotice_time));jQuery(document.getElementById("top_notice")).hide()};
     1function wp_header_notification_set_cookie(c_name,value,expiredays){var exdate=new Date();exdate.setDate(exdate.getDate()+expiredays);document.cookie=c_name+"="+escape(value)+((expiredays==null)?"":";expires="+exdate.toGMTString())}function wp_header_notification_pushdownyes(){wp_header_notification_set_cookie("close_wp_header_notification",true,parseInt(wp_header_notification_info.renotice_time));window.open(wp_header_notification_info.button_link,"_blank");jQuery(document.getElementById("top_notice")).hide()}function wp_header_notification_pushdownclose(){wp_header_notification_set_cookie("close_wp_header_notification",true,parseInt(wp_header_notification_info.renotice_time));jQuery(document.getElementById("top_notice")).hide()};
  • wp-header-notification/trunk/wp-header-notification.php

    r883978 r883982  
    77Plugin URI:   http://www.arefly.com/wp-header-notification/
    88Description:  Add a Notification bar similar to Google in your blog's header.
    9 Version:      1.2.3
     9Version:      1.2.4
    1010Author:       Arefly
    1111Author URI:   http://www.arefly.com/
Note: See TracChangeset for help on using the changeset viewer.