diff options
author | Yury German <blueknight@gentoo.org> | 2019-05-22 01:01:36 -0400 |
---|---|---|
committer | Yury German <blueknight@gentoo.org> | 2019-05-22 01:01:36 -0400 |
commit | 0914c92da22824025992c368c745546e41fbeb84 (patch) | |
tree | 965f6adf3b725e56d559fe4a93eff02281499dcc /plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law-admin.js | |
parent | Deleting plugins for update (diff) | |
download | blogs-gentoo-0914c92da22824025992c368c745546e41fbeb84.tar.gz blogs-gentoo-0914c92da22824025992c368c745546e41fbeb84.tar.bz2 blogs-gentoo-0914c92da22824025992c368c745546e41fbeb84.zip |
Adding Plugins
Updating the following
akismet.4.1.2, google-authenticator.0.52, jetpack.7.3.1
Signed-off-by: Yury German <blueknight@gentoo.org>
Diffstat (limited to 'plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law-admin.js')
-rw-r--r-- | plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law-admin.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law-admin.js b/plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law-admin.js new file mode 100644 index 00000000..6d3dd42e --- /dev/null +++ b/plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law-admin.js @@ -0,0 +1,32 @@ +/* eslint no-var: 0 */ + +( function( $ ) { + var $document = $( document ); + + $document.on( 'ready', function() { + var maybeShowNotice = function( e, policyUrl ) { + var $policyUrl = $( policyUrl || this ).closest( '.eu-cookie-law-widget-policy-url' ); + + if ( $policyUrl.find( 'input[type="radio"][value="default"]' ).is( ':checked' ) ) { + $policyUrl.find( '.notice.default-policy' ).css( 'display', 'block' ); + $policyUrl.find( '.notice.custom-policy' ).hide(); + } else { + $policyUrl.find( '.notice.default-policy' ).hide(); + $policyUrl.find( '.notice.custom-policy' ).css( 'display', 'block' ); + } + }; + + $document.on( + 'click', + '.eu-cookie-law-widget-policy-url input[type="radio"]', + maybeShowNotice + ); + $document.on( 'widget-updated widget-added', function( e, widget ) { + var widgetId = $( widget ).attr( 'id' ); + if ( widgetId.indexOf( 'eu_cookie_law_widget' ) !== -1 ) { + maybeShowNotice( null, $( '#' + widgetId + ' .eu-cookie-law-widget-policy-url' ) ); + } + } ); + $( '.eu-cookie-law-widget-policy-url' ).each( maybeShowNotice ); + } ); +} )( jQuery ); |