Changeset 1830530
- Timestamp:
- 02/28/2018 02:59:09 AM (8 years ago)
- Location:
- 3woords
- Files:
-
- 2 edited
- 4 copied
-
tags/1.2 (copied) (copied from 3woords/trunk)
-
tags/1.2/TWOORDS_LICENSE.txt (copied) (copied from 3woords/trunk/TWOORDS_LICENSE.txt)
-
tags/1.2/plugin.php (copied) (copied from 3woords/trunk/plugin.php) (4 diffs)
-
tags/1.2/readme.txt (copied) (copied from 3woords/trunk/readme.txt) (2 diffs)
-
trunk/plugin.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
3woords/tags/1.2/plugin.php
r1829753 r1830530 5 5 Plugin URI: https://3woords.com/ 6 6 Description: Generates plots on the basis of response. You can add this short code into page/post and it will be visible.<code>[3woords_block question-code="QUE1" question-title="Put you question title here" language="en" width="300" show-credit-link=0]</code> <br/> <strong>question-code</strong> is mandatory. width is in pixel. <strong>show-credit-link</strong> is option whether you want to show credit link or not. 7 Version: 1. 17 Version: 1.2 8 8 Author: Sverker 9 9 */ … … 150 150 // shortcode function 151 151 function twoords_woordsPlot_func( $atts ) { 152 153 global $content; 154 ob_start(); 155 152 156 $lang = $atts['language'] ? $atts['language'] : 'en'; 153 157 $width = $atts['width'] ? $atts['width'].'px' : 'auto'; … … 178 182 return; 179 183 } 180 global $content; 181 ob_start(); 184 182 185 ?> 183 186 <div class="clearboth"></div> … … 274 277 success: function(data){ 275 278 if(data.success){ 276 $('. woords-response').html('<img src = "'+data.results['plot-url']+'">');279 $('.ren_<?php echo $rand_s; ?> .woords-response').html('<img src = "'+data.results['plot-url']+'">'); 277 280 $('.ren_<?php echo $rand_s; ?> [name="woords1"]').val(''); 278 281 $('.ren_<?php echo $rand_s; ?> [name="woords2"]').val(''); -
3woords/tags/1.2/readme.txt
r1829745 r1830530 6 6 Requires at least: 3.0.1 7 7 Tested up to: 4.3 8 Stable tag: 1. 18 Stable tag: 1.2 9 9 10 10 License: GPLv2 or later … … 32 32 33 33 == Changelog == 34 = 1.2 = 35 * Fixed bug with multiple clouds on same page 36 34 37 = 1.1 = 35 38 * Fixed issue of cloud position -
3woords/trunk/plugin.php
r1829753 r1830530 5 5 Plugin URI: https://3woords.com/ 6 6 Description: Generates plots on the basis of response. You can add this short code into page/post and it will be visible.<code>[3woords_block question-code="QUE1" question-title="Put you question title here" language="en" width="300" show-credit-link=0]</code> <br/> <strong>question-code</strong> is mandatory. width is in pixel. <strong>show-credit-link</strong> is option whether you want to show credit link or not. 7 Version: 1. 17 Version: 1.2 8 8 Author: Sverker 9 9 */ … … 150 150 // shortcode function 151 151 function twoords_woordsPlot_func( $atts ) { 152 153 global $content; 154 ob_start(); 155 152 156 $lang = $atts['language'] ? $atts['language'] : 'en'; 153 157 $width = $atts['width'] ? $atts['width'].'px' : 'auto'; … … 178 182 return; 179 183 } 180 global $content; 181 ob_start(); 184 182 185 ?> 183 186 <div class="clearboth"></div> … … 274 277 success: function(data){ 275 278 if(data.success){ 276 $('. woords-response').html('<img src = "'+data.results['plot-url']+'">');279 $('.ren_<?php echo $rand_s; ?> .woords-response').html('<img src = "'+data.results['plot-url']+'">'); 277 280 $('.ren_<?php echo $rand_s; ?> [name="woords1"]').val(''); 278 281 $('.ren_<?php echo $rand_s; ?> [name="woords2"]').val(''); -
3woords/trunk/readme.txt
r1829745 r1830530 6 6 Requires at least: 3.0.1 7 7 Tested up to: 4.3 8 Stable tag: 1. 18 Stable tag: 1.2 9 9 10 10 License: GPLv2 or later … … 32 32 33 33 == Changelog == 34 = 1.2 = 35 * Fixed bug with multiple clouds on same page 36 34 37 = 1.1 = 35 38 * Fixed issue of cloud position
Note: See TracChangeset
for help on using the changeset viewer.