| 1 |
/* $Id: ipauth.admin.js,v 1.4 2009/04/21 12:31:44 jonfrancisskydiver Exp $ */ |
/* $Id: ipauth.admin.js,v 1.5 2009/05/15 19:55:00 jonfrancisskydiver Exp $ */ |
| 2 |
|
|
| 3 |
$(function(){ |
$(function(){ |
| 4 |
|
|
| 45 |
}, |
}, |
| 46 |
|
|
| 47 |
get_all_users: function() { |
get_all_users: function() { |
| 48 |
$.get('/admin/user/ip_authenticator/data/get_auths/all', null, function(data, textStatus) { |
$.get('../../admin/user/ip_authenticator/data/get_auths/all', null, function(data, textStatus) { |
| 49 |
$('.form-table').html(data); |
$('.form-table').html(data); |
| 50 |
}); |
}); |
| 51 |
}, |
}, |
| 52 |
|
|
| 53 |
get_authenticator_list: function( user_filter_text ) { |
get_authenticator_list: function( user_filter_text ) { |
| 54 |
//alert("get: "+user_filter_text); |
//alert("get: "+user_filter_text); |
| 55 |
$.get('/admin/user/ip_authenticator/data/get_auths/'+user_filter_text, null, function(data, textStatus) { |
$.get('../../admin/user/ip_authenticator/data/get_auths/'+user_filter_text, null, function(data, textStatus) { |
| 56 |
$('.form-table').html(data); |
$('.form-table').html(data); |
| 57 |
}); |
}); |
| 58 |
} |
} |