Changeset 2789049
- Timestamp:
- 09/23/2022 12:51:18 AM (4 years ago)
- Location:
- fastcomments
- Files:
-
- 40 added
- 3 edited
-
tags/3.12.6 (added)
-
tags/3.12.6/.gitignore (added)
-
tags/3.12.6/LICENSE (added)
-
tags/3.12.6/README.md (added)
-
tags/3.12.6/README.txt (added)
-
tags/3.12.6/admin (added)
-
tags/3.12.6/admin/fastcomments-admin-advanced-settings-view.js (added)
-
tags/3.12.6/admin/fastcomments-admin-advanced-settings-view.php (added)
-
tags/3.12.6/admin/fastcomments-admin-manual-sync-view.js (added)
-
tags/3.12.6/admin/fastcomments-admin-manual-sync-view.php (added)
-
tags/3.12.6/admin/fastcomments-admin-setup-view.js (added)
-
tags/3.12.6/admin/fastcomments-admin-setup-view.php (added)
-
tags/3.12.6/admin/fastcomments-admin-sso-view.css (added)
-
tags/3.12.6/admin/fastcomments-admin-sso-view.js (added)
-
tags/3.12.6/admin/fastcomments-admin-sso-view.php (added)
-
tags/3.12.6/admin/fastcomments-admin-support-view.php (added)
-
tags/3.12.6/admin/fastcomments-admin-view.php (added)
-
tags/3.12.6/admin/fastcomments-admin.css (added)
-
tags/3.12.6/admin/fastcomments-admin.php (added)
-
tags/3.12.6/admin/images (added)
-
tags/3.12.6/admin/images/api.png (added)
-
tags/3.12.6/admin/images/crown.png (added)
-
tags/3.12.6/admin/images/css.png (added)
-
tags/3.12.6/admin/images/debugging.png (added)
-
tags/3.12.6/admin/images/download.png (added)
-
tags/3.12.6/admin/images/home.png (added)
-
tags/3.12.6/admin/images/logo-50.png (added)
-
tags/3.12.6/admin/images/logo.png (added)
-
tags/3.12.6/admin/images/settings.png (added)
-
tags/3.12.6/admin/images/support.png (added)
-
tags/3.12.6/admin/images/sync-status.png (added)
-
tags/3.12.6/admin/images/sync.png (added)
-
tags/3.12.6/core (added)
-
tags/3.12.6/core/FastCommentsIntegrationCore.php (added)
-
tags/3.12.6/core/FastCommentsWordPressIntegration.php (added)
-
tags/3.12.6/fastcomments-wordpress-plugin.php (added)
-
tags/3.12.6/public (added)
-
tags/3.12.6/public/fastcomments-public.php (added)
-
tags/3.12.6/public/fastcomments-widget-view.php (added)
-
tags/3.12.6/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/fastcomments-wordpress-plugin.php (modified) (2 diffs)
-
trunk/public/fastcomments-widget-view.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fastcomments/trunk/README.txt
r2771905 r2789049 4 4 Requires at least: 4.6 5 5 Tested up to: 6.0 6 Stable tag: 3.12. 56 Stable tag: 3.12.6 7 7 Requires PHP: 5.2.5 8 8 License: GPLv2 or later … … 88 88 == Changelog == 89 89 90 = 3.12.6 = 91 * Compatibility improvements for some themes that might move the FastComments javascript around on the page. 92 90 93 = 3.12.5 = 91 94 * Performance improvements for the initial sync. -
fastcomments/trunk/fastcomments-wordpress-plugin.php
r2771905 r2789049 4 4 Plugin URI: https://fastcomments.com 5 5 Description: Live Comments, Fast. A comment system that will delight your users and developers. 6 Version: 3.12. 56 Version: 3.12.6 7 7 Author: winrid @ FastComments 8 8 License: GPL-2.0+ … … 14 14 } 15 15 16 $FASTCOMMENTS_VERSION = 3.12 5;16 $FASTCOMMENTS_VERSION = 3.126; 17 17 18 18 require_once plugin_dir_path(__FILE__) . 'admin/fastcomments-admin.php'; -
fastcomments/trunk/public/fastcomments-widget-view.php
r2744374 r2789049 31 31 function attemptToLoad() { 32 32 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); 35 36 return; 36 37 }
Note: See TracChangeset
for help on using the changeset viewer.