diff --git a/ajax/form.html b/ajax/form.html
old mode 100644
new mode 100755
index 41ec7b3..ca170af
--- a/ajax/form.html
+++ b/ajax/form.html
@@ -1,13 +1,16 @@
\ No newline at end of file
+
+
+
diff --git a/readme.txt b/readme.txt
old mode 100644
new mode 100755
index a53defa..331cad7
--- a/readme.txt
+++ b/readme.txt
@@ -1,9 +1,9 @@
=== Plugin Name ===
-Contributors: ItayXD
+Contributors: ItayXD, mirkolofio , abdillah
Tags: Tooltip, tinyMCE, responsive, mobile-friendly
Requires at least: 3.0.1
-Tested up to: 3.5.1
-Stable tag: 1.3
+Tested up to: 3.8
+Stable tag: 1.5.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -17,7 +17,7 @@ tooltips are used to present a tiny amount of hidden content (mainly explanatory
* It's responsive. It relies on a maximum width value when viewed on large screens, adopts to narrow environments and picks the best viewable position relatively to the target (top, bottom; left, center, right).
* It's mobile-friendly. It pops up when a call-to-action button is tapped and disappears when tapped on the tooltip itself.
* It's HTML formatting capable. Need to write some words in italic or so? No problem, this will work out.
-* It's extremely easy to use: A tooltip button in added to the default WordPress editor, all you have to do it click it and fill the pop-up dialog, the rest is taken care of automatically.
+* It's extremely easy to use: A tooltip button in added to the default WordPress editor, all you have to do is select a text, click the button and fill the pop-up dialog, the rest is taken care of automatically.
###Advance
* The button adds a WordPress short-code, if you want the tip to be HTML formated (avoid block level elements) you can just wrap it with [tooltip tip=""][/tooltip] in tinyMCE.
@@ -35,7 +35,7 @@ Thanks to [Osvaldas]( http://osvaldas.info/) who made the Js and the CSS. WordPr
== Frequently Asked Questions ==
-Non I can think of, contact for help.
+None I can think of, contact for help.
== Screenshots ==
1. The tooltip in action.
@@ -43,7 +43,24 @@ Non I can think of, contact for help.
== Changelog ==
-= 1.2 =
+= 1.5.3 =
+* improve UX tooltip insertion
+* change theme to simple, good-looking style
+
+= 1.5.2 =
+* added the ajax folder we.. lost
+
+= 1.5.1 =
+* Allow the "hover" attribute to provide nested shortcode available in bubble content
+* "invert" attribute is still available but it's deprecated
+
+= 1.5 =
+* Allow the "invert" attribute to provide nested shortcode available in bubble content
+
+= 1.4 =
+* Nested Shortcodes in tooltip base content (not the bubble content)
+
+= 1.3 =
* Bug fix- Dialog underlay.
= 1.2 =
diff --git a/responsive-tooltip-admin-page.php b/responsive-tooltip-admin-page.php
old mode 100644
new mode 100755
index 2c73b9f..3851de3
--- a/responsive-tooltip-admin-page.php
+++ b/responsive-tooltip-admin-page.php
@@ -1,7 +1,7 @@
+
Responsive Mobile-Friendly Tooltip Settings
@@ -47,12 +48,14 @@ function RMFtooltip_input_processor ($input) { //Process user data
}
/*----------Save css to file------------*/
if ($input[chkbx_use_custom_css] == 'on') {
- if ($input[chkbx_replace_css] == 'on') {
- $css_file = $input[textarea_css]; //Writes only the new changes
- } else {
- $css_file = file_get_contents(plugin_dir_path(__FILE__) . 'responsive-tooltip.org.css');
- $css_file .= "\n{$input[textarea_css]}"; //Adds the entered code at the end of the original code
- }
+ $css_file = $input[textarea_css]; //Writes only the new changes
+
+ // : if ($input[chkbx_replace_css] == 'on') {
+ // : $css_file = $input[textarea_css]; //Writes only the new changes
+ // : } else {
+ // : $css_file = file_get_contents(plugin_dir_path(__FILE__) . 'responsive-tooltip.org.css');
+ // : $css_file .= "\n{$input[textarea_css]}"; //Adds the entered code at the end of the original code
+ // : }
} else { //Else writes the original file
$css_file = file_get_contents(plugin_dir_path(__FILE__) . 'responsive-tooltip.org.css'); //Writes only the original file
}
@@ -91,9 +94,10 @@ function chkbx_use_custom_css_func () {
+
@@ -113,10 +118,30 @@ function textarea_css_func () {