Changeset 2057337
- Timestamp:
- 03/26/2019 06:33:36 AM (7 years ago)
- Location:
- zingtree
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/zingtree.php (modified) (2 diffs)
-
zingtree.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
zingtree/readme.txt
r2057334 r2057337 2 2 Contributors: Zingtree 3 3 Donate link: https://zingtree.com 4 Tags: decision tree, call center, contact center, agent scripting, interactive decision tree, support, interactive faq, troubleshooter, medical scheduling, ecommerce4 Tags: decision tree, call center, contact center, agent scripting, interactive decision tree, support, interactive faq, troubleshooter, medical scheduling, call script 5 5 Requires at least: 3.0 6 6 Tested up to: 5.11 7 Stable tag: 6.0 27 Stable tag: 6.03 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 81 81 == Changelog == 82 82 83 = 6.0 2=83 = 6.03 = 84 84 Added other_parameters, disable_scroll, scroll_parent_to_top options 85 85 -
zingtree/trunk/readme.txt
r2057331 r2057337 2 2 Contributors: Zingtree 3 3 Donate link: https://zingtree.com 4 Tags: decision tree, call center, contact center, agent scripting, interactive decision tree, support, interactive faq, troubleshooter, medical scheduling, ecommerce4 Tags: decision tree, call center, contact center, agent scripting, interactive decision tree, support, interactive faq, troubleshooter, medical scheduling, call script 5 5 Requires at least: 3.0 6 6 Tested up to: 5.11 7 Stable tag: 6.0 27 Stable tag: 6.03 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 81 81 == Changelog == 82 82 83 = 6.0 2=83 = 6.03 = 84 84 Added other_parameters, disable_scroll, scroll_parent_to_top options 85 85 -
zingtree/trunk/zingtree.php
r2057331 r2057337 4 4 Plugin URI: http://wordpress.org/plugins/zingtree/ 5 5 Description: [zingtree name="Zingtree" id="123456789" ] shortcode 6 Version: 6.0 26 Version: 6.03 7 7 Author: Zingtree 8 8 Author URI: https://zingtree.com … … 88 88 // disable scroll (set to 1 by defaiult) 89 89 if ($atts['disable_scroll'] == 'yes') 90 $parms = "&disable_scroll=1" ;90 $parms .= "&disable_scroll=1" ; 91 91 else 92 $parms = "&disable_scroll=1" ;92 $parms .= "&disable_scroll=1" ; 93 93 94 94 // scroll_parent_to_top 95 95 if ($atts['scroll_parent_to_top'] == 'yes') 96 $parms = "&scroll_parent_to_top=1" ;96 $parms .= "&scroll_parent_to_top=1" ; 97 97 98 98 -
zingtree/zingtree.php
r2057334 r2057337 4 4 Plugin URI: http://wordpress.org/plugins/zingtree/ 5 5 Description: [zingtree name="Zingtree" id="123456789" ] shortcode 6 Version: 6.0 26 Version: 6.03 7 7 Author: Zingtree 8 8 Author URI: https://zingtree.com … … 88 88 // disable scroll (set to 1 by defaiult) 89 89 if ($atts['disable_scroll'] == 'yes') 90 $parms = "&disable_scroll=1" ;90 $parms .= "&disable_scroll=1" ; 91 91 else 92 $parms = "&disable_scroll=1" ;92 $parms .= "&disable_scroll=1" ; 93 93 94 94 // scroll_parent_to_top 95 95 if ($atts['scroll_parent_to_top'] == 'yes') 96 $parms = "&scroll_parent_to_top=1" ;96 $parms .= "&scroll_parent_to_top=1" ; 97 97 98 98
Note: See TracChangeset
for help on using the changeset viewer.