Changeset 2433498
- Timestamp:
- 12/07/2020 07:27:04 PM (5 years ago)
- Location:
- wp-snow-effect
- Files:
-
- 42 added
- 4 edited
-
. (modified) (1 prop)
-
tags/1.1.15 (added)
-
tags/1.1.15/LICENSE.txt (added)
-
tags/1.1.15/README.txt (added)
-
tags/1.1.15/admin (added)
-
tags/1.1.15/admin/class-wp-snow-effect-admin.php (added)
-
tags/1.1.15/admin/css (added)
-
tags/1.1.15/admin/css/wp-snow-effect-admin.css (added)
-
tags/1.1.15/admin/img (added)
-
tags/1.1.15/admin/img/info.png (added)
-
tags/1.1.15/admin/index.php (added)
-
tags/1.1.15/admin/js (added)
-
tags/1.1.15/admin/js/wp-snow-effect-admin.js (added)
-
tags/1.1.15/admin/js/wp-snow-effect-admin.min.js (added)
-
tags/1.1.15/admin/partials (added)
-
tags/1.1.15/admin/partials/wp-snow-effect-admin-display.php (added)
-
tags/1.1.15/admin/settings (added)
-
tags/1.1.15/admin/settings/settings.php (added)
-
tags/1.1.15/includes (added)
-
tags/1.1.15/includes/class-wp-snow-effect-activator.php (added)
-
tags/1.1.15/includes/class-wp-snow-effect-deactivator.php (added)
-
tags/1.1.15/includes/class-wp-snow-effect-i18n.php (added)
-
tags/1.1.15/includes/class-wp-snow-effect-loader.php (added)
-
tags/1.1.15/includes/class-wp-snow-effect.php (added)
-
tags/1.1.15/includes/index.php (added)
-
tags/1.1.15/includes/wp-settings-framework.php (added)
-
tags/1.1.15/index.php (added)
-
tags/1.1.15/languages (added)
-
tags/1.1.15/languages/wp-snow-effect.pot (added)
-
tags/1.1.15/public (added)
-
tags/1.1.15/public/class-wp-snow-effect-public.php (added)
-
tags/1.1.15/public/css (added)
-
tags/1.1.15/public/css/wp-snow-effect-public.css (added)
-
tags/1.1.15/public/index.php (added)
-
tags/1.1.15/public/js (added)
-
tags/1.1.15/public/js/jsnow.js (added)
-
tags/1.1.15/public/js/jsnow.min.js (added)
-
tags/1.1.15/public/js/wp-snow-effect-public.js (added)
-
tags/1.1.15/public/js/wp-snow-effect-public.min.js (added)
-
tags/1.1.15/public/partials (added)
-
tags/1.1.15/public/partials/wp-snow-effect-public-display.php (added)
-
tags/1.1.15/uninstall.php (added)
-
tags/1.1.15/wp-snow-effect.php (added)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/admin/js/wp-snow-effect-admin.js (modified) (1 diff)
-
trunk/wp-snow-effect.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-snow-effect
- Property svn:ignore
-
old new 1 1 .git 2 .gitignore 3 .gitattributes
-
- Property svn:ignore
-
wp-snow-effect/trunk/README.txt
r2432614 r2433498 6 6 Tested up to: 5.5.3 7 7 Requires PHP: 5.6 8 Stable tag: 1.1.1 48 Stable tag: 1.1.15 9 9 License:GPL2 10 10 … … 60 60 61 61 == Changelog == 62 63 = 1.1.15 = 64 * fixed jQuery 3.1 incompatibility in admin file 62 65 63 66 = 1.1.14 = … … 122 125 123 126 == Upgrade Notice == 127 128 = 1.1.15 = 129 * fixed jQuery 3.1 incompatibility in admin file 124 130 125 131 = 1.1.14 = -
wp-snow-effect/trunk/admin/js/wp-snow-effect-admin.js
r1774205 r2433498 1 (function ( $) {2 'use strict';1 (function ($) { 2 "use strict"; 3 3 4 $( window ).load(function() { 5 var previous; 6 $('#settings_flake_type').focus(function () { 7 previous = this.value; 8 }).change(function() { 9 if(this.value < 100) { 10 pro_alert(); 11 this.value = previous; 12 } 13 }); 4 $(window).on("load", function () { 5 var previous; 6 $("#settings_flake_type") 7 .focus(function () { 8 previous = this.value; 9 }) 10 .change(function () { 11 if (this.value < 100) { 12 pro_alert(); 13 this.value = previous; 14 } 15 }); 14 16 15 $('#settings_on_spec_page').keyup(function () {16 pro_alert();17 this.value = '';18 });17 $("#settings_on_spec_page").keyup(function () { 18 pro_alert(); 19 this.value = ""; 20 }); 19 21 20 function pro_alert() {21 alert("Sorry...\n\nThis functionality is available in PRO version only.\n\nPlease consider to upgrade.");22 }23 24 }); 25 26 })( jQuery);22 function pro_alert() { 23 alert( 24 "Sorry...\n\nThis functionality is available in PRO version only.\n\nPlease consider to upgrade." 25 ); 26 } 27 }); 28 })(jQuery); -
wp-snow-effect/trunk/wp-snow-effect.php
r2432614 r2433498 17 17 * Plugin URI: http://www.wpmaniax.com/seasonal-plugins 18 18 * Description: Add nice looking animation effect of falling snow to your Wordpress site and enjoy winter. 19 * Version: 1.1.1 419 * Version: 1.1.15 20 20 * Author: WPManiax 21 21 * Author URI: http://www.wpmaniax.com
Note: See TracChangeset
for help on using the changeset viewer.