| 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> |