Version Description
- Visual Editor Anchor Button now using id attribute instead of name. read more: http://www.jeriffcheng.com/html-5-using-attribute-id-instead-of-attribute-name-for-anchors.html
Download this release
Release Info
Developer | Jeriff Cheng |
Plugin | Easy Smooth Scroll Links |
Version | 1.8 |
Comparing to | |
See all releases |
Code changes from version 1.7 to 1.8
- anchor/plugin.min.js +1 -1
- index.php +1 -1
- options.php +2 -2
- readme.txt +6 -4
anchor/plugin.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
tinymce.PluginManager.add("anchor",function(
|
1 |
+
tinymce.PluginManager.add("anchor",function(n){function e(){var e=n.selection.getNode();n.windowManager.open({title:"Anchor",body:{type:"textbox",name:"name",size:40,label:"Name",value:e.name||e.id},onsubmit:function(e){n.execCommand("mceInsertContent",!1,n.dom.createHTML("a",{id:e.data.name}))}})}n.addButton("anchor",{icon:"anchor",tooltip:"Anchor",onclick:e,stateSelector:"a:not([href])"}),n.addMenuItem("anchor",{icon:"anchor",text:"Anchor",context:"insert",onclick:e})});
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Easy Smooth Scroll Links
|
4 |
Plugin URI: http://www.jeriffcheng.com/wordpress-plugins/easy-smooth-scroll-links
|
5 |
Description: Create anchors and add up to to 30 scrolling animation effects to links that link to page anchors. You can set scroll speed and offset value.
|
6 |
-
Version: 1.
|
7 |
Author: Jeriff Cheng
|
8 |
Author URI: http://www.jeriffcheng.com/
|
9 |
*/
|
3 |
Plugin Name: Easy Smooth Scroll Links
|
4 |
Plugin URI: http://www.jeriffcheng.com/wordpress-plugins/easy-smooth-scroll-links
|
5 |
Description: Create anchors and add up to to 30 scrolling animation effects to links that link to page anchors. You can set scroll speed and offset value.
|
6 |
+
Version: 1.8
|
7 |
Author: Jeriff Cheng
|
8 |
Author URI: http://www.jeriffcheng.com/
|
9 |
*/
|
options.php
CHANGED
@@ -8,8 +8,8 @@
|
|
8 |
<table class="widefat">
|
9 |
<thead>
|
10 |
<tr>
|
11 |
-
<th><a target="_blank" href="http://www.jeriffcheng.com/wordpress-plugins/easy-smooth-scroll-links">FAQs</a> - <a target="_blank" href="http://wordpress.org/support/view/plugin-reviews/easy-smooth-scroll-links?filter=5#postform">Rate it</a> - <a target="_blank" href="http://wordpress.org/support/plugin/easy-smooth-scroll-links">Support Forum</a> ---- Suggestions? <a target="_blank" href="http://www.jeriffcheng.com/contact">Contact Me</a></th>
|
12 |
-
|
13 |
</thead>
|
14 |
|
15 |
<tbody>
|
8 |
<table class="widefat">
|
9 |
<thead>
|
10 |
<tr>
|
11 |
+
<th><a target="_blank" href="http://www.jeriffcheng.com/wordpress-plugins/easy-smooth-scroll-links">FAQs</a> - <a target="_blank" href="http://wordpress.org/support/view/plugin-reviews/easy-smooth-scroll-links?filter=5#postform">Rate it</a> - <a target="_blank" href="http://wordpress.org/support/plugin/easy-smooth-scroll-links">Support Forum</a> ---- Suggestions? <a target="_blank" href="http://www.jeriffcheng.com/contact">Contact Me</a><br><br><strong style="color: #ff0000;">Everyone should Read this Article: <a target="_blank" href="http://www.jeriffcheng.com/html-5-using-attribute-id-instead-of-attribute-name-for-anchors.html">HTML 5 – Using attribute ‘id’ instead of attribute ‘name’ for Anchors</a></strong></th>
|
12 |
+
<th>
|
13 |
</thead>
|
14 |
|
15 |
<tbody>
|
readme.txt
CHANGED
@@ -43,6 +43,10 @@ For FAQs and bug report,refer to <a target="_blank" rel="follow" href="http://ww
|
|
43 |
|
44 |
== Changelog ==
|
45 |
|
|
|
|
|
|
|
|
|
46 |
= 1.7 =
|
47 |
|
48 |
* WordPress 3.9 Compatible
|
@@ -96,8 +100,6 @@ Changed : Use wp_enqueue_script function to load the script instead of the defau
|
|
96 |
|
97 |
== Upgrade Notice ==
|
98 |
|
99 |
-
= 1.
|
100 |
-
|
101 |
-
* WordPress 3.9 Compatible
|
102 |
|
103 |
-
*
|
43 |
|
44 |
== Changelog ==
|
45 |
|
46 |
+
= 1.8 =
|
47 |
+
|
48 |
+
* Visual Editor Anchor Button now using id attribute instead of name. read more: http://www.jeriffcheng.com/html-5-using-attribute-id-instead-of-attribute-name-for-anchors.html
|
49 |
+
|
50 |
= 1.7 =
|
51 |
|
52 |
* WordPress 3.9 Compatible
|
100 |
|
101 |
== Upgrade Notice ==
|
102 |
|
103 |
+
= 1.8 =
|
|
|
|
|
104 |
|
105 |
+
* Visual Editor Anchor Button now using id attribute instead of name. read more: http://www.jeriffcheng.com/html-5-using-attribute-id-instead-of-attribute-name-for-anchors.html
|