Plugin Directory

Changeset 2789049


Ignore:
Timestamp:
09/23/2022 12:51:18 AM (4 years ago)
Author:
winrid
Message:

3.12.6 - Compatibility improvements for some themes that might move the FastComments javascript around on the page.

Location:
fastcomments
Files:
40 added
3 edited

Legend:

Unmodified
Added
Removed
  • fastcomments/trunk/README.txt

    r2771905 r2789049  
    44Requires at least: 4.6
    55Tested up to: 6.0
    6 Stable tag: 3.12.5
     6Stable tag: 3.12.6
    77Requires PHP: 5.2.5
    88License: GPLv2 or later
     
    8888== Changelog ==
    8989
     90= 3.12.6 =
     91* Compatibility improvements for some themes that might move the FastComments javascript around on the page.
     92
    9093= 3.12.5 =
    9194* Performance improvements for the initial sync.
  • fastcomments/trunk/fastcomments-wordpress-plugin.php

    r2771905 r2789049  
    44Plugin URI: https://fastcomments.com
    55Description: Live Comments, Fast. A comment system that will delight your users and developers.
    6 Version: 3.12.5
     6Version: 3.12.6
    77Author: winrid @ FastComments
    88License: GPL-2.0+
     
    1414}
    1515
    16 $FASTCOMMENTS_VERSION = 3.125;
     16$FASTCOMMENTS_VERSION = 3.126;
    1717
    1818require_once plugin_dir_path(__FILE__) . 'admin/fastcomments-admin.php';
  • fastcomments/trunk/public/fastcomments-widget-view.php

    r2744374 r2789049  
    3131                function attemptToLoad() {
    3232                    attempts++;
    33                     if (window.FastCommentsUI) {
    34                         window.FastCommentsUI(document.getElementById('fastcomments-widget'), $jsonFcConfig);
     33                    var widgetTarget = document.getElementById('fastcomments-widget');
     34                    if (window.FastCommentsUI && widgetTarget) {
     35                        window.FastCommentsUI(widgetTarget, $jsonFcConfig);
    3536                        return;
    3637                    }
Note: See TracChangeset for help on using the changeset viewer.