Changeset 1549266
- Timestamp:
- 12/08/2016 12:31:27 PM (9 years ago)
- Location:
- custom-cookie-message
- Files:
-
- 10 edited
- 1 copied
-
tags/1.5.2 (copied) (copied from custom-cookie-message/trunk)
-
tags/1.5.2/README.txt (modified) (2 diffs)
-
tags/1.5.2/custom-cookie-message.php (modified) (1 diff)
-
tags/1.5.2/includes/ac-cookie-message.php (modified) (1 diff)
-
tags/1.5.2/js/ac-custom-cookie-message-frontend.js (modified) (1 diff)
-
tags/1.5.2/views/cookie-notice.php (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/custom-cookie-message.php (modified) (1 diff)
-
trunk/includes/ac-cookie-message.php (modified) (1 diff)
-
trunk/js/ac-custom-cookie-message-frontend.js (modified) (1 diff)
-
trunk/views/cookie-notice.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
custom-cookie-message/tags/1.5.2/README.txt
r1546313 r1549266 2 2 Contributors: johansylvan, angrycreative, kylegard 3 3 Tags: custom, cookie, message, consent, cookie bar, cookie compliance, cookie law, cookie notice, cookie notification, cookie notification bar, cookie notify, cookies, eu, eu cookie, eu cookie law, notice, notification, notify, custom cookie message, WPML, Polylang, Multisite, multisites, local storage 4 Requires at least: 1.0 5 Tested up to: 1.5.1 6 Stable tag: 1.5.1 4 Requires at least: 4.6.1 5 Tested up to: 4.7 6 Stable tag: 1.5.2 7 7 8 License: GPLv2 or later 8 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 20 21 1. Add the plugin custom cookie message to your plugins map 21 22 1. Activate the plugin through the 'Plugins' menu in WordPress 23 1. Locate the options in settings -> Cookies. Default location, content and styling is set but can be customized. 24 25 == Changelog == 26 27 = 1.0 = 28 * Initial commit. 29 30 = 1.1 = 31 * Add debounce for scroll events. 32 33 = 1.2 = 34 * Add localstorage. 35 36 = 1.3 = 37 * Add possibility to use styling from theme. 38 39 = 1.4 = 40 * Redefine styling. 41 42 = 1.5 = 43 * Improved the functionality of adding styling from theme. 44 45 = 1.5.1 = 46 * Add minor styling fix. 47 48 = 1.5.2 = 49 * Look over code to work for older versions of php. -
custom-cookie-message/tags/1.5.2/custom-cookie-message.php
r1546313 r1549266 5 5 * Plugin URI: https://angrycreative.se/ 6 6 * Description: A customizable cookie message. 7 * Version: 1.5. 17 * Version: 1.5.2 8 8 * Author: Johan Sylvan, angrycreative 9 9 * Author URI: https://angrycreative.se/ -
custom-cookie-message/tags/1.5.2/includes/ac-cookie-message.php
r1541779 r1549266 91 91 92 92 public function register_backend_plugin_scripts(){ 93 wp_enqueue_script('variation-custom-cookie-script', CUSTOM_COOKIE_MESSAGE_PLUGIN_URL . '/js/ac-custom-cookie-message-backend.js', ['jquery', 'jquery-ui-slider', 'wp-color-picker']);93 wp_enqueue_script('variation-custom-cookie-script', CUSTOM_COOKIE_MESSAGE_PLUGIN_URL . '/js/ac-custom-cookie-message-backend.js', array( 'jquery', 'jquery-ui-slider', 'wp-color-picker')); 94 94 add_action('admin_enqueue_scripts', array( $this, 'enqueue_admin_js' ) ); 95 95 } -
custom-cookie-message/tags/1.5.2/js/ac-custom-cookie-message-frontend.js
r1541779 r1549266 87 87 }) 88 88 .done(function( data ) { 89 storage.setItem("ac-cookie-fallback", "fallback"); 89 if(storage){ 90 storage.setItem("ac-cookie-fallback", "fallback"); 91 } 92 90 93 $('#custom-cookie-message-container').hide(); 91 94 if( cookieContainer.hasClass('top-static') ) { -
custom-cookie-message/tags/1.5.2/views/cookie-notice.php
r1546313 r1549266 72 72 <?php if(!empty( $styling_options['link_color_picker'] )){ ?> 73 73 #custom-cookie-message-container.warning-text a:link{ 74 color: <?php echo $styling_options['link_color_picker'];?> ;74 color: <?php echo $styling_options['link_color_picker'];?> !important; 75 75 } 76 76 <?php } ?> -
custom-cookie-message/trunk/README.txt
r1546313 r1549266 2 2 Contributors: johansylvan, angrycreative, kylegard 3 3 Tags: custom, cookie, message, consent, cookie bar, cookie compliance, cookie law, cookie notice, cookie notification, cookie notification bar, cookie notify, cookies, eu, eu cookie, eu cookie law, notice, notification, notify, custom cookie message, WPML, Polylang, Multisite, multisites, local storage 4 Requires at least: 1.0 5 Tested up to: 1.5.1 6 Stable tag: 1.5.1 4 Requires at least: 4.6.1 5 Tested up to: 4.7 6 Stable tag: 1.5.2 7 7 8 License: GPLv2 or later 8 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 20 21 1. Add the plugin custom cookie message to your plugins map 21 22 1. Activate the plugin through the 'Plugins' menu in WordPress 23 1. Locate the options in settings -> Cookies. Default location, content and styling is set but can be customized. 24 25 == Changelog == 26 27 = 1.0 = 28 * Initial commit. 29 30 = 1.1 = 31 * Add debounce for scroll events. 32 33 = 1.2 = 34 * Add localstorage. 35 36 = 1.3 = 37 * Add possibility to use styling from theme. 38 39 = 1.4 = 40 * Redefine styling. 41 42 = 1.5 = 43 * Improved the functionality of adding styling from theme. 44 45 = 1.5.1 = 46 * Add minor styling fix. 47 48 = 1.5.2 = 49 * Look over code to work for older versions of php. -
custom-cookie-message/trunk/custom-cookie-message.php
r1546313 r1549266 5 5 * Plugin URI: https://angrycreative.se/ 6 6 * Description: A customizable cookie message. 7 * Version: 1.5. 17 * Version: 1.5.2 8 8 * Author: Johan Sylvan, angrycreative 9 9 * Author URI: https://angrycreative.se/ -
custom-cookie-message/trunk/includes/ac-cookie-message.php
r1541779 r1549266 91 91 92 92 public function register_backend_plugin_scripts(){ 93 wp_enqueue_script('variation-custom-cookie-script', CUSTOM_COOKIE_MESSAGE_PLUGIN_URL . '/js/ac-custom-cookie-message-backend.js', ['jquery', 'jquery-ui-slider', 'wp-color-picker']);93 wp_enqueue_script('variation-custom-cookie-script', CUSTOM_COOKIE_MESSAGE_PLUGIN_URL . '/js/ac-custom-cookie-message-backend.js', array( 'jquery', 'jquery-ui-slider', 'wp-color-picker')); 94 94 add_action('admin_enqueue_scripts', array( $this, 'enqueue_admin_js' ) ); 95 95 } -
custom-cookie-message/trunk/js/ac-custom-cookie-message-frontend.js
r1541779 r1549266 87 87 }) 88 88 .done(function( data ) { 89 storage.setItem("ac-cookie-fallback", "fallback"); 89 if(storage){ 90 storage.setItem("ac-cookie-fallback", "fallback"); 91 } 92 90 93 $('#custom-cookie-message-container').hide(); 91 94 if( cookieContainer.hasClass('top-static') ) { -
custom-cookie-message/trunk/views/cookie-notice.php
r1546313 r1549266 72 72 <?php if(!empty( $styling_options['link_color_picker'] )){ ?> 73 73 #custom-cookie-message-container.warning-text a:link{ 74 color: <?php echo $styling_options['link_color_picker'];?> ;74 color: <?php echo $styling_options['link_color_picker'];?> !important; 75 75 } 76 76 <?php } ?>
Note: See TracChangeset
for help on using the changeset viewer.