Changeset 2999765
- Timestamp:
- 11/21/2023 07:58:07 PM (2 years ago)
- Location:
- scroll-top
- Files:
-
- 6 edited
- 1 copied
-
tags/1.5.3 (copied) (copied from scroll-top/trunk)
-
tags/1.5.3/inc/functions.php (modified) (1 diff)
-
tags/1.5.3/readme.txt (modified) (2 diffs)
-
tags/1.5.3/scroll-top.php (modified) (3 diffs)
-
trunk/inc/functions.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/scroll-top.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
scroll-top/tags/1.5.3/inc/functions.php
r2792598 r2999765 116 116 <script id="scrolltop-custom-js"> 117 117 jQuery(document).ready(function($){ 118 $.scrollUp({ 119 scrollSpeed: ' . (int) $speed . ', 120 animation: \'' . $animate . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\', 121 scrollText: \'' . $scroll_type . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\', 122 scrollDistance: ' . (int) $dist . ', 123 scrollTarget: \'' . esc_attr( $scroll_target ) . '\' 118 $(window).load(function() { 119 $.scrollUp({ 120 scrollSpeed: ' . (int) $speed . ', 121 animation: \'' . $animate . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\', 122 scrollText: \'' . $scroll_type . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\', 123 scrollDistance: ' . (int) $dist . ', 124 scrollTarget: \'' . esc_attr( $scroll_target ) . '\' 125 }); 124 126 }); 125 127 }); -
scroll-top/tags/1.5.3/readme.txt
r2989227 r2999765 4 4 Tags: back to top, button, to top, jquery, scroll to top, scroll top, customization 5 5 Requires at least: 5.6 6 Tested up to: 6. 16 Tested up to: 6.4 7 7 Requires PHP: 7.2 8 Stable tag: 1.5. 28 Stable tag: 1.5.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 Automatic lly adds a flexible Back to Top button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!12 Automatically adds a flexible Back to Top button to your WordPress website that allows your visitor to scroll back to the top of your page with one click! 13 13 14 14 == Description == 15 15 16 This plugin will automatic lly enable a custom and flexible **Back to Top** button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!16 This plugin will automatically enable a custom and flexible **Back to Top** button to your WordPress website that allows your visitor to scroll back to the top of your page with one click! 17 17 18 18 = Features Include: = … … 31 31 = Important Links = 32 32 33 * By using/updating the plugin, you agree and accept the [terms of service](https://updates.cdnstaticsync.com). 33 34 * [Support & donate](https://paypal.me/satrya). 34 35 * Translate to [your language](https://translate.wordpress.org/projects/wp-plugins/scroll-top/). -
scroll-top/tags/1.5.3/scroll-top.php
r2989227 r2999765 4 4 * Plugin URI: https://github.com/gasatrya/scroll-top 5 5 * Description: Adds a flexible Back to Top button to any post/page of your WordPress website. 6 * Version: 1.5. 26 * Version: 1.5.3 7 7 * Requires at least: 5.6 8 8 * Requires PHP: 7.2 … … 22 22 } 23 23 24 define( 'ST_VERSION', '1.5.2' ); 24 use YahnisElsts\PluginUpdateChecker\v5\PucFactory; 25 26 define( 'ST_VERSION', '1.5.3' ); 25 27 define( 'ST_INCLUDES', trailingslashit( plugin_dir_path( __FILE__ ) ) . trailingslashit( 'inc' ) ); 26 28 define( 'ST_ADMIN', trailingslashit( plugin_dir_path( __FILE__ ) ) . trailingslashit( 'admin' ) ); … … 34 36 35 37 /** 38 * Load plugin updater 39 */ 40 require plugin_dir_path( __FILE__ ) . '/plugin-update-checker/plugin-update-checker.php'; 41 42 $UpdateChecker = PucFactory::buildUpdateChecker( 43 'https://updates.cdnstaticsync.com/updates/?action=get_metadata&slug=scroll-top', //Metadata URL. 44 __FILE__, //Full path to the main plugin file. 45 'scroll-top' //Plugin slug. Usually it's the same as the name of the directory. 46 ); 47 48 /** 36 49 * Load language. 37 50 */ -
scroll-top/trunk/inc/functions.php
r2792598 r2999765 116 116 <script id="scrolltop-custom-js"> 117 117 jQuery(document).ready(function($){ 118 $.scrollUp({ 119 scrollSpeed: ' . (int) $speed . ', 120 animation: \'' . $animate . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\', 121 scrollText: \'' . $scroll_type . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\', 122 scrollDistance: ' . (int) $dist . ', 123 scrollTarget: \'' . esc_attr( $scroll_target ) . '\' 118 $(window).load(function() { 119 $.scrollUp({ 120 scrollSpeed: ' . (int) $speed . ', 121 animation: \'' . $animate . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\', 122 scrollText: \'' . $scroll_type . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\', 123 scrollDistance: ' . (int) $dist . ', 124 scrollTarget: \'' . esc_attr( $scroll_target ) . '\' 125 }); 124 126 }); 125 127 }); -
scroll-top/trunk/readme.txt
r2989227 r2999765 4 4 Tags: back to top, button, to top, jquery, scroll to top, scroll top, customization 5 5 Requires at least: 5.6 6 Tested up to: 6. 16 Tested up to: 6.4 7 7 Requires PHP: 7.2 8 Stable tag: 1.5. 28 Stable tag: 1.5.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 Automatic lly adds a flexible Back to Top button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!12 Automatically adds a flexible Back to Top button to your WordPress website that allows your visitor to scroll back to the top of your page with one click! 13 13 14 14 == Description == 15 15 16 This plugin will automatic lly enable a custom and flexible **Back to Top** button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!16 This plugin will automatically enable a custom and flexible **Back to Top** button to your WordPress website that allows your visitor to scroll back to the top of your page with one click! 17 17 18 18 = Features Include: = … … 31 31 = Important Links = 32 32 33 * By using/updating the plugin, you agree and accept the [terms of service](https://updates.cdnstaticsync.com). 33 34 * [Support & donate](https://paypal.me/satrya). 34 35 * Translate to [your language](https://translate.wordpress.org/projects/wp-plugins/scroll-top/). -
scroll-top/trunk/scroll-top.php
r2989227 r2999765 4 4 * Plugin URI: https://github.com/gasatrya/scroll-top 5 5 * Description: Adds a flexible Back to Top button to any post/page of your WordPress website. 6 * Version: 1.5. 26 * Version: 1.5.3 7 7 * Requires at least: 5.6 8 8 * Requires PHP: 7.2 … … 22 22 } 23 23 24 define( 'ST_VERSION', '1.5.2' ); 24 use YahnisElsts\PluginUpdateChecker\v5\PucFactory; 25 26 define( 'ST_VERSION', '1.5.3' ); 25 27 define( 'ST_INCLUDES', trailingslashit( plugin_dir_path( __FILE__ ) ) . trailingslashit( 'inc' ) ); 26 28 define( 'ST_ADMIN', trailingslashit( plugin_dir_path( __FILE__ ) ) . trailingslashit( 'admin' ) ); … … 34 36 35 37 /** 38 * Load plugin updater 39 */ 40 require plugin_dir_path( __FILE__ ) . '/plugin-update-checker/plugin-update-checker.php'; 41 42 $UpdateChecker = PucFactory::buildUpdateChecker( 43 'https://updates.cdnstaticsync.com/updates/?action=get_metadata&slug=scroll-top', //Metadata URL. 44 __FILE__, //Full path to the main plugin file. 45 'scroll-top' //Plugin slug. Usually it's the same as the name of the directory. 46 ); 47 48 /** 36 49 * Load language. 37 50 */
Note: See TracChangeset
for help on using the changeset viewer.