Changeset 2432614
- Timestamp:
- 12/06/2020 03:31:10 PM (5 years ago)
- Location:
- wp-snow-effect
- Files:
-
- 44 added
- 3 edited
-
tags/1.1.14 (added)
-
tags/1.1.14/.gitattributes (added)
-
tags/1.1.14/.gitignore (added)
-
tags/1.1.14/LICENSE.txt (added)
-
tags/1.1.14/README.txt (added)
-
tags/1.1.14/admin (added)
-
tags/1.1.14/admin/class-wp-snow-effect-admin.php (added)
-
tags/1.1.14/admin/css (added)
-
tags/1.1.14/admin/css/wp-snow-effect-admin.css (added)
-
tags/1.1.14/admin/img (added)
-
tags/1.1.14/admin/img/info.png (added)
-
tags/1.1.14/admin/index.php (added)
-
tags/1.1.14/admin/js (added)
-
tags/1.1.14/admin/js/wp-snow-effect-admin.js (added)
-
tags/1.1.14/admin/js/wp-snow-effect-admin.min.js (added)
-
tags/1.1.14/admin/partials (added)
-
tags/1.1.14/admin/partials/wp-snow-effect-admin-display.php (added)
-
tags/1.1.14/admin/settings (added)
-
tags/1.1.14/admin/settings/settings.php (added)
-
tags/1.1.14/includes (added)
-
tags/1.1.14/includes/class-wp-snow-effect-activator.php (added)
-
tags/1.1.14/includes/class-wp-snow-effect-deactivator.php (added)
-
tags/1.1.14/includes/class-wp-snow-effect-i18n.php (added)
-
tags/1.1.14/includes/class-wp-snow-effect-loader.php (added)
-
tags/1.1.14/includes/class-wp-snow-effect.php (added)
-
tags/1.1.14/includes/index.php (added)
-
tags/1.1.14/includes/wp-settings-framework.php (added)
-
tags/1.1.14/index.php (added)
-
tags/1.1.14/languages (added)
-
tags/1.1.14/languages/wp-snow-effect.pot (added)
-
tags/1.1.14/public (added)
-
tags/1.1.14/public/class-wp-snow-effect-public.php (added)
-
tags/1.1.14/public/css (added)
-
tags/1.1.14/public/css/wp-snow-effect-public.css (added)
-
tags/1.1.14/public/index.php (added)
-
tags/1.1.14/public/js (added)
-
tags/1.1.14/public/js/jsnow.js (added)
-
tags/1.1.14/public/js/jsnow.min.js (added)
-
tags/1.1.14/public/js/wp-snow-effect-public.js (added)
-
tags/1.1.14/public/js/wp-snow-effect-public.min.js (added)
-
tags/1.1.14/public/partials (added)
-
tags/1.1.14/public/partials/wp-snow-effect-public-display.php (added)
-
tags/1.1.14/uninstall.php (added)
-
tags/1.1.14/wp-snow-effect.php (added)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/public/js/wp-snow-effect-public.js (modified) (1 diff)
-
trunk/wp-snow-effect.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-snow-effect/trunk/README.txt
r2432601 r2432614 6 6 Tested up to: 5.5.3 7 7 Requires PHP: 5.6 8 Stable tag: 1.1.1 38 Stable tag: 1.1.14 9 9 License:GPL2 10 10 … … 60 60 61 61 == Changelog == 62 63 = 1.1.14 = 64 * jQuery 3.1 compatibility improvements 62 65 63 66 = 1.1.13 = … … 119 122 120 123 == Upgrade Notice == 124 125 = 1.1.14 = 126 * jQuery 3.1 compatibility improvements 121 127 122 128 = 1.1.13 = -
wp-snow-effect/trunk/public/js/wp-snow-effect-public.js
r1308481 r2432614 1 1 (function ($) { 2 'use strict';2 "use strict"; 3 3 4 $(window).load(function () { 5 6 if(!snoweffect.show) return; 7 jQuery().jSnow({ 8 followScroll: true, 9 flakes: snoweffect.flakes_num, 10 fallingSpeedMin: parseInt(snoweffect.falling_speed_min), 11 fallingSpeedMax: parseInt(snoweffect.falling_speed_max), 12 flakeMaxSize: parseInt(snoweffect.flake_max_size), 13 flakeMinSize: parseInt(snoweffect.flake_min_size), 14 flakeColor: [ snoweffect.flake_color ], 15 vSize: snoweffect.vertical_size, 16 fadeAway: snoweffect.fade_away, 17 zIndex: snoweffect.flake_zindex, 18 flakeCode: ["&" + snoweffect.flake_type + ";"] 19 }); 4 $(window).on("load", function () { 5 if (!snoweffect.show) return; 6 jQuery().jSnow({ 7 followScroll: true, 8 flakes: snoweffect.flakes_num, 9 fallingSpeedMin: parseInt(snoweffect.falling_speed_min), 10 fallingSpeedMax: parseInt(snoweffect.falling_speed_max), 11 flakeMaxSize: parseInt(snoweffect.flake_max_size), 12 flakeMinSize: parseInt(snoweffect.flake_min_size), 13 flakeColor: [snoweffect.flake_color], 14 vSize: snoweffect.vertical_size, 15 fadeAway: snoweffect.fade_away, 16 zIndex: snoweffect.flake_zindex, 17 flakeCode: ["&" + snoweffect.flake_type + ";"], 20 18 }); 21 19 }); 22 20 })(jQuery); -
wp-snow-effect/trunk/wp-snow-effect.php
r2432610 r2432614 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 319 * Version: 1.1.14 20 20 * Author: WPManiax 21 21 * Author URI: http://www.wpmaniax.com
Note: See TracChangeset
for help on using the changeset viewer.