PluginProbe
Analytics Insights – Google Analytics Dashboard for WordPress / trunk
Analytics Insights – Google Analytics Dashboard for WordPress vtrunk
6.3.6 6.3.7 6.3.8 6.3.9 trunk 5.4.1 5.4.2 5.4.2.1 5.4.3 5.4.4 5.4.5 5.4.6 5.4.7 5.5.2 5.5.3 5.5.4 5.5.5 5.5.6 5.6 5.6.1 5.6.2 5.6.3 5.6.4 5.6.5 5.6.6 All 61 releases
analytics-insights / admin / js / ui.js

ui.js in Analytics Insights – Google Analytics Dashboard for WordPress trunk, at admin/js/ui.js

26 lines 783 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*-
2 * Author: Alin Marcu
3 * Author URI: https://deconf.com
4 * Copyright 2013 Alin Marcu
5 * License: GPLv2 or later
6 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
7 */
8
9 "use strict";
10
11 jQuery( document ).ready( function () {
12
13 var aiwp_ui = {
14 action : 'aiwp_dismiss_notices',
15 aiwp_security_dismiss_notices : aiwp_ui_data.security,
16 }
17
18 jQuery( "#aiwp-notice .notice-dismiss" ).on("click", function () {
19 jQuery.post( aiwp_ui_data.ajaxurl, aiwp_ui );
20 } );
21
22 if ( aiwp_ui_data.ed_bubble != '' ) {
23 jQuery( '#toplevel_page_aiwp_settings li > a[href*="page=aiwp_errors_debugging"]' ).append( '&nbsp;<span class="awaiting-mod count-1"><span class="pending-count" style="padding:0 7px;">' + aiwp_ui_data.ed_bubble + '</span></span>' );
24 }
25
26 } );