Plugin Directory

Changeset 2841362


Ignore:
Timestamp:
12/30/2022 02:58:32 AM (3 years ago)
Author:
startflorin
Message:

v1.0.1

Location:
stocktech-alerts/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • stocktech-alerts/trunk/assets/stocktech-charts-shortcode.js

    r2840376 r2841362  
    238238        function GetPluginShortCodeName(chartType) {
    239239            switch (chartType) {
     240                case "Stocktech Symbols":
     241                    return "stocktech-symbols";
    240242                case "Stocktech Alerts":
    241243                    return "stocktech-alerts";
  • stocktech-alerts/trunk/dist/blocks.build.js

    r2840376 r2841362  
    7171                }, {
    7272                    name: "height",
    73                     value: "100%"
     73                    value: "400"
    7474                }, {
    7575                    name: "culture",
     
    9090                , C = "?type=alerts";
    9191            (o && "" != o && "%null%" != o || m && ("1" == m || "true" == m)) && (C = "?type=compare");
    92             for (var S = "https://stocktech.org/static/widget-alerts/" + C + "&" + b + "&showUserMenu=false&wpe=1", y = 0; y < h.length; y++)
     92            for (var S = "https://stocktech.org/static/widget-symbols/" + C + "&" + b + "&showUserMenu=false&wpe=1", y = 0; y < h.length; y++)
    9393                h[y].value && "%null%" !== h[y].value && (S += "&" + h[y].attrName + "=" + h[y].value.replace("#", ""));
    9494            return wp.element.createElement("div", {
  • stocktech-alerts/trunk/readme.txt

    r2840376 r2841362  
    1111
    1212This plugin helps you use the StockTech alerts widget as a block to your WordPress page.
    13 This block will create an iframe to: https://stocktech.org/static/widget-alerts
     13This block will create an iframe to: https://stocktech.org/static/widget-symbols
    1414
    1515Stocktech Alerts and stock marketing content.
  • stocktech-alerts/trunk/stocktech_alerts_plugin.php

    r2840376 r2841362  
    44    Plugin URI: https://stocktech.org/?page=public-user-api
    55    Description: Stocktech Alerts and stock marketing content.
    6     Version: 1.0.0
     6    Version: 1.0.1
    77*/
    8 define('stocktech_alerts_version','1.0.0');
     8define('stocktech_alerts_version','1.0.1');
    99define( 'stocktech_alerts__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    1010class StocktechAlertsSettingsPage
     
    497497        $includechart=$default_includeChart;
    498498   
    499     $link = 'https://stocktech.org/static/widget-alerts';
     499    $link = 'https://stocktech.org/static/widget-symbols';
    500500   
    501501   
     
    507507   
    508508    if ($includechart=="1" ||$includechart=="true"){
    509         $link = 'https://stocktech.org/static/widget-alerts';
     509        $link = 'https://stocktech.org/static/widget-symbols';
    510510        stocktech_alerts_get_param_value('displayPrices', $showheader, 'string' , $extraSettings, $stocktech_alerts_options, '');
    511511        stocktech_alerts_get_param_value('days', $days, 'string' , $extraSettings, $stocktech_alerts_options, '');
Note: See TracChangeset for help on using the changeset viewer.