Açıklama Yok

um-gdpr.js 424B

1234567891011121314151617181920212223
  1. (function( $ ) {
  2. 'use strict';
  3. $(document).on('click', "a.um-toggle-gdpr" ,function() {
  4. var me = jQuery(this);
  5. $( ".um-gdpr-content" ).toggle( "fast", function() {
  6. if( $( ".um-gdpr-content" ).is(':visible') ){
  7. me.text( me.data('toggle-hide') );
  8. }
  9. if( $( ".um-gdpr-content" ).is(':hidden') ){
  10. me.text( me.data('toggle-show') );
  11. }
  12. });
  13. });
  14. })( jQuery );