PluginProbe
Front End PM / 7.3
Front End PM v7.3
trunk 1.1 1.2 1.3 10.1.1 10.1.2 10.1.3 10.1.4 10.1.5 10.1.6 10.1.7 10.2.1 11.1.1 11.2.1 11.2.2 11.2.3 11.3.1 11.3.3 11.3.4 11.3.5 11.3.6 11.3.7 11.3.8 11.3.9 11.4.1 All 58 releases
front-end-pm / assets / js / script.js

script.js in Front End PM 7.3, at assets/js/script.js

36 lines 936 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 var fep_delay = (function(){
2 var timer = 0;
3 return function(callback, ms){
4 clearTimeout (timer);
5 timer = setTimeout(callback, ms);
6 };
7 })();
8 jQuery( document ).on( "keyup", "#fep-message-top", function() {
9 fep_delay(function(){
10 jQuery('#fep-result').hide();
11 jQuery('#fep-message-top').addClass('fep-loading-gif');
12 var display_name=jQuery('#fep-message-top').val();
13 var data = {
14 action: 'fep_autosuggestion_ajax',
15 searchBy: display_name,
16 token: fep_script.nonce
17 };
18
19 jQuery.post(fep_script.ajaxurl, data, function(results) {
20 jQuery('#fep-message-top').removeClass('fep-loading-gif');
21 jQuery('#fep-result').html(results);
22 if ( results ){
23 jQuery('#fep-result').show();
24 }
25
26 });
27 }, 1000 );
28 });
29
30 function fep_fill_autosuggestion(login, display) {
31
32 jQuery('#fep-message-to').val( login );
33 jQuery('#fep-message-top').val( display );
34 jQuery('#fep-result').hide();
35 }
36