Plugin Directory

Changeset 1830530


Ignore:
Timestamp:
02/28/2018 02:59:09 AM (8 years ago)
Author:
3woords
Message:

tagging version 1.2

Location:
3woords
Files:
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • 3woords/tags/1.2/plugin.php

    r1829753 r1830530  
    55Plugin URI: https://3woords.com/
    66Description: 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.1
     7Version: 1.2
    88Author: Sverker
    99*/
     
    150150// shortcode function
    151151function twoords_woordsPlot_func( $atts ) {
     152
     153    global $content;
     154    ob_start();
     155
    152156    $lang =  $atts['language'] ? $atts['language'] : 'en';
    153157    $width =  $atts['width'] ? $atts['width'].'px' : 'auto';
     
    178182        return;
    179183    }
    180     global $content;
    181     ob_start();
     184   
    182185    ?>
    183186    <div class="clearboth"></div>
     
    274277                    success: function(data){
    275278                        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']+'">');
    277280                            $('.ren_<?php echo $rand_s; ?> [name="woords1"]').val('');
    278281                            $('.ren_<?php echo $rand_s; ?> [name="woords2"]').val('');
  • 3woords/tags/1.2/readme.txt

    r1829745 r1830530  
    66Requires at least: 3.0.1
    77Tested up to: 4.3
    8 Stable tag: 1.1
     8Stable tag: 1.2
    99
    1010License: GPLv2 or later
     
    3232
    3333== Changelog ==
     34= 1.2 =
     35* Fixed bug with multiple clouds on same page
     36
    3437= 1.1 =
    3538* Fixed issue of cloud position
  • 3woords/trunk/plugin.php

    r1829753 r1830530  
    55Plugin URI: https://3woords.com/
    66Description: 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.1
     7Version: 1.2
    88Author: Sverker
    99*/
     
    150150// shortcode function
    151151function twoords_woordsPlot_func( $atts ) {
     152
     153    global $content;
     154    ob_start();
     155
    152156    $lang =  $atts['language'] ? $atts['language'] : 'en';
    153157    $width =  $atts['width'] ? $atts['width'].'px' : 'auto';
     
    178182        return;
    179183    }
    180     global $content;
    181     ob_start();
     184   
    182185    ?>
    183186    <div class="clearboth"></div>
     
    274277                    success: function(data){
    275278                        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']+'">');
    277280                            $('.ren_<?php echo $rand_s; ?> [name="woords1"]').val('');
    278281                            $('.ren_<?php echo $rand_s; ?> [name="woords2"]').val('');
  • 3woords/trunk/readme.txt

    r1829745 r1830530  
    66Requires at least: 3.0.1
    77Tested up to: 4.3
    8 Stable tag: 1.1
     8Stable tag: 1.2
    99
    1010License: GPLv2 or later
     
    3232
    3333== Changelog ==
     34= 1.2 =
     35* Fixed bug with multiple clouds on same page
     36
    3437= 1.1 =
    3538* Fixed issue of cloud position
Note: See TracChangeset for help on using the changeset viewer.