account
1 year ago
checkout
1 year ago
connect
1 year ago
debug
1 year ago
forms
1 year ago
js
1 year ago
partials
1 year ago
plugin-info
1 year ago
account.php
1 year ago
add-ons.php
1 year ago
add-trial-to-pricing.php
1 year ago
admin-notice.php
1 year ago
ajax-loader.php
1 year ago
api-connectivity-message-js.php
1 year ago
auto-installation.php
1 year ago
checkout.php
1 year ago
clone-resolution-js.php
1 year ago
connect.php
1 year ago
contact.php
1 year ago
debug.php
1 year ago
email.php
1 year ago
gdpr-optin-js.php
1 year ago
index.php
1 year ago
plugin-icon.php
1 year ago
pricing.php
1 year ago
secure-https-header.php
1 year ago
sticky-admin-notice-js.php
1 year ago
tabs-capture-js.php
1 year ago
tabs.php
1 year ago
api-connectivity-message-js.php
32 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package Freemius |
| 4 | * @copyright Copyright (c) 2015, Freemius, Inc. |
| 5 | * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3 |
| 6 | * @since 2.5.4 |
| 7 | */ |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | exit; |
| 10 | } |
| 11 | ?> |
| 12 | <script type="text/javascript"> |
| 13 | ( function( $ ) { |
| 14 | $( document ).ready(function() { |
| 15 | var $parent = $( '.fs-notice, #fs_connect, .fs-modal' ); |
| 16 | |
| 17 | $parent.on( 'click', '.fs-api-request-error-show-details-link', function () { |
| 18 | var $error_details_container = $parent.find( '.fs-api-request-error-details' ); |
| 19 | |
| 20 | $error_details_container.toggle(); |
| 21 | |
| 22 | $( this ).find( 'span' ).prop( 'class', |
| 23 | $error_details_container.is( ':visible' ) ? |
| 24 | 'dashicons dashicons-arrow-up-alt2' : |
| 25 | 'dashicons dashicons-arrow-down-alt2' |
| 26 | ); |
| 27 | |
| 28 | return false; |
| 29 | } ); |
| 30 | } ); |
| 31 | } )( jQuery ); |
| 32 | </script> |