22 lines
442 B
JavaScript
22 lines
442 B
JavaScript
/**
|
|
* WSAL Audit Log Pointer.
|
|
*
|
|
* @since 3.2
|
|
*/
|
|
jQuery(document).ready( function($) {
|
|
wsal_open_pointer(0);
|
|
function wsal_open_pointer(i) {
|
|
var pointer = wsalPointer.pointers[i];
|
|
var options = $.extend( pointer.options, {
|
|
close: function() {
|
|
$.post( ajaxurl, {
|
|
pointer: pointer.pointer_id,
|
|
action: 'wsal_dismiss_wp_pointer'
|
|
});
|
|
}
|
|
});
|
|
|
|
$(pointer.target).first().pointer( options ).pointer('open');
|
|
}
|
|
});
|