Version Description
- Bug fixes
Download this release
Release Info
Developer | syammohanm |
Plugin | WPFront Scroll Top |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.0.1
classes/class-wpfront-scroll-top-options.php
CHANGED
@@ -47,8 +47,8 @@ if (!class_exists('WPFront_Scroll_Top_Options')) {
|
|
47 |
$this->addOption('scroll_duration', 'int', 400, array($this, 'validate_zero_positive'))->__('Scroll Duration');
|
48 |
|
49 |
$this->addOption('location', 'int', 1, array($this, 'validate_range_1_4'))->__('Location');
|
50 |
-
$this->addOption('marginX', 'int', 20
|
51 |
-
$this->addOption('marginY', 'int', 20
|
52 |
|
53 |
$this->addOption('image', 'string', '1.png');
|
54 |
$this->addOption('custom_url', 'string', '');
|
47 |
$this->addOption('scroll_duration', 'int', 400, array($this, 'validate_zero_positive'))->__('Scroll Duration');
|
48 |
|
49 |
$this->addOption('location', 'int', 1, array($this, 'validate_range_1_4'))->__('Location');
|
50 |
+
$this->addOption('marginX', 'int', 20)->__('Margin X');
|
51 |
+
$this->addOption('marginY', 'int', 20)->__('Margin Y');
|
52 |
|
53 |
$this->addOption('image', 'string', '1.png');
|
54 |
$this->addOption('custom_url', 'string', '');
|
classes/class-wpfront-scroll-top.php
CHANGED
@@ -35,7 +35,7 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
35 |
class WPFront_Scroll_Top {
|
36 |
|
37 |
//Constants
|
38 |
-
const VERSION = '1.0';
|
39 |
const OPTIONSPAGE_SLUG = 'wpfront-scroll-top';
|
40 |
const OPTIONS_GROUP_NAME = 'wpfront-scroll-top-options-group';
|
41 |
const OPTION_NAME = 'wpfront-scroll-top-options';
|
35 |
class WPFront_Scroll_Top {
|
36 |
|
37 |
//Constants
|
38 |
+
const VERSION = '1.0.1';
|
39 |
const OPTIONSPAGE_SLUG = 'wpfront-scroll-top';
|
40 |
const OPTIONS_GROUP_NAME = 'wpfront-scroll-top-options-group';
|
41 |
const OPTION_NAME = 'wpfront-scroll-top-options';
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wpfront.com/donate/
|
|
4 |
Tags: back, back to top, navigation, navigate, page, scroll, scroll to top, scroll top, scroll up, top, up
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.8
|
7 |
-
Stable tag: 1.0
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -42,11 +42,17 @@ No one has asked anything yet.
|
|
42 |
|
43 |
== Changelog ==
|
44 |
|
|
|
|
|
|
|
45 |
= 1.0 =
|
46 |
* Initial release
|
47 |
|
48 |
== Upgrade Notice ==
|
49 |
|
|
|
|
|
|
|
50 |
= 1.0 =
|
51 |
* Initial release
|
52 |
|
4 |
Tags: back, back to top, navigation, navigate, page, scroll, scroll to top, scroll top, scroll up, top, up
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.8
|
7 |
+
Stable tag: 1.0.1
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
42 |
|
43 |
== Changelog ==
|
44 |
|
45 |
+
= 1.0.1 =
|
46 |
+
* Bug fixes
|
47 |
+
|
48 |
= 1.0 =
|
49 |
* Initial release
|
50 |
|
51 |
== Upgrade Notice ==
|
52 |
|
53 |
+
= 1.0.1 =
|
54 |
+
* Bug fixes
|
55 |
+
|
56 |
= 1.0 =
|
57 |
* Initial release
|
58 |
|
wpfront-scroll-top.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WPFront Scroll Top
|
4 |
* Plugin URI: http://wpfront.com/scroll-top-plugin/
|
5 |
* Description: Allows the visitor to easily scroll back to the top of the page.
|
6 |
-
* Version: 1.0
|
7 |
* Author: Syam Mohan
|
8 |
* Author URI: http://wpfront.com
|
9 |
* License: GPL v3
|
3 |
* Plugin Name: WPFront Scroll Top
|
4 |
* Plugin URI: http://wpfront.com/scroll-top-plugin/
|
5 |
* Description: Allows the visitor to easily scroll back to the top of the page.
|
6 |
+
* Version: 1.0.1
|
7 |
* Author: Syam Mohan
|
8 |
* Author URI: http://wpfront.com
|
9 |
* License: GPL v3
|