Plugin Directory

Changeset 933017


Ignore:
Timestamp:
06/16/2014 01:24:18 PM (12 years ago)
Author:
CupRacer
Message:

release 2.0.5

Location:
thumbsniper
Files:
4 added
3 edited
7 copied

Legend:

Unmodified
Added
Removed
  • thumbsniper/tags/2.0.5/readme.txt

    r932965 r933017  
    55Requires at least: 2.9
    66Tested up to: 3.9.1
    7 Stable tag: 2.0.4
     7Stable tag: 2.0.5
    88
    99This plugin dynamically shows preview screenshots of hyperlinks as tooltips on your WordPress site.
     
    6060
    6161== Changelog ==
     62
     63= 2.0.5 =
     64* Added support for SSL websites (https).
    6265
    6366= 2.0.4 =
  • thumbsniper/tags/2.0.5/thumbsniper.php

    r932962 r933017  
    55Description: This plugin dynamically shows preview screenshots of hyperlinks as tooltips on your WordPress site.
    66Author: Thomas Schulte
    7 Version: 2.0.4
     7Version: 2.0.5
    88Author URI: http://www.mynakedgirlfriend.de
    99Text Domain: thumbsniper
  • thumbsniper/tags/2.0.5/thumbsniper_basic.php

    r932962 r933017  
    66    protected $options;
    77
    8     const GUNSLINGER_URL = "http://gunslinger.thumbsniper.com/fire.php";
     8    const GUNSLINGER_URL = "gunslinger.thumbsniper.com/fire.php";
    99    const JQUERY_PATH = "jquery/jquery-1.8.0.min.js";
    1010    const QTIP_PATH = "qtip/jquery.qtip.min.js";
     
    364364                    ajax: {
    365365                        loading: true,
    366                         url: "' . self::GUNSLINGER_URL . '",
     366                        url: document.location.protocol + "//' . self::GUNSLINGER_URL . '",
    367367                        type: "GET",
    368368                        dataType: "jsonp",
     
    375375                                    var self = this;
    376376                                    setTimeout(function () {
    377                                         self.set("content.ajax.url", "' . self::GUNSLINGER_URL . '");
     377                                        self.set("content.ajax.url", document.location.protocol + "//' . self::GUNSLINGER_URL . '");
    378378                                    }, 1000);
    379379                                }else {
  • thumbsniper/trunk/readme.txt

    r932965 r933017  
    55Requires at least: 2.9
    66Tested up to: 3.9.1
    7 Stable tag: 2.0.4
     7Stable tag: 2.0.5
    88
    99This plugin dynamically shows preview screenshots of hyperlinks as tooltips on your WordPress site.
     
    6060
    6161== Changelog ==
     62
     63= 2.0.5 =
     64* Added support for SSL websites (https).
    6265
    6366= 2.0.4 =
  • thumbsniper/trunk/thumbsniper.php

    r932962 r933017  
    55Description: This plugin dynamically shows preview screenshots of hyperlinks as tooltips on your WordPress site.
    66Author: Thomas Schulte
    7 Version: 2.0.4
     7Version: 2.0.5
    88Author URI: http://www.mynakedgirlfriend.de
    99Text Domain: thumbsniper
  • thumbsniper/trunk/thumbsniper_basic.php

    r932962 r933017  
    66    protected $options;
    77
    8     const GUNSLINGER_URL = "http://gunslinger.thumbsniper.com/fire.php";
     8    const GUNSLINGER_URL = "gunslinger.thumbsniper.com/fire.php";
    99    const JQUERY_PATH = "jquery/jquery-1.8.0.min.js";
    1010    const QTIP_PATH = "qtip/jquery.qtip.min.js";
     
    364364                    ajax: {
    365365                        loading: true,
    366                         url: "' . self::GUNSLINGER_URL . '",
     366                        url: document.location.protocol + "//' . self::GUNSLINGER_URL . '",
    367367                        type: "GET",
    368368                        dataType: "jsonp",
     
    375375                                    var self = this;
    376376                                    setTimeout(function () {
    377                                         self.set("content.ajax.url", "' . self::GUNSLINGER_URL . '");
     377                                        self.set("content.ajax.url", document.location.protocol + "//' . self::GUNSLINGER_URL . '");
    378378                                    }, 1000);
    379379                                }else {
Note: See TracChangeset for help on using the changeset viewer.