Changeset 883982
- Timestamp:
- 03/29/2014 06:24:14 AM (12 years ago)
- Location:
- wp-header-notification/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (3 diffs)
-
script.js (modified) (1 diff)
-
script.min.js (modified) (1 diff)
-
wp-header-notification.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-header-notification/trunk/readme.txt
r883978 r883982 4 4 Tags: Header, Notification 5 5 Requires at least: 3.0 6 Tested up to: 3.8 6 Tested up to: 3.8.1 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 43 43 Extract all files from the ZIP file, making sure to keep the file structure intact, and then upload it to `/wp-content/plugins/`. 44 44 45 This should result in the following file structure:46 47 `- wp-content48 - plugins49 - wp-header-notification50 - lang51 | readme.txt52 | wp-header-notification-zh_CN.mo53 | wp-header-notification-zh_CN.po54 | wp-header-notification-zh_TW.mo55 | wp-header-notification-zh_TW.po56 | wp-header-notification.pot57 | LICENSE58 | license.txt59 | options.php60 | readme.txt61 | script.js62 | style.css63 | wp-header-notification.php`64 65 45 Then just visit your admin area and activate the plugin. 66 46 … … 82 62 83 63 == Changelog == 64 65 **Version 1.2.4** 66 67 * Fix Bugs. 84 68 85 69 **Version 1.2.3** -
wp-header-notification/trunk/script.js
r883978 r883982 10 10 wp_header_notification_set_cookie("close_wp_header_notification", true, parseInt(wp_header_notification_info.renotice_time)); 11 11 window.open(wp_header_notification_info.button_link, "_blank"); 12 jQuery(document.getElementById('top_notice')).hide(); 12 13 } 13 14 function 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()};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");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 7 7 Plugin URI: http://www.arefly.com/wp-header-notification/ 8 8 Description: Add a Notification bar similar to Google in your blog's header. 9 Version: 1.2. 39 Version: 1.2.4 10 10 Author: Arefly 11 11 Author URI: http://www.arefly.com/
Note: See TracChangeset
for help on using the changeset viewer.