mirror of
https://github.com/e107inc/e107.git
synced 2025-05-03 18:59:45 +02:00
Fixes issue with admin->users drop-down menu.
This commit is contained in:
parent
acca6e9f48
commit
b90c43ba14
@ -1,5 +1,8 @@
|
||||
$(document).ready(function()
|
||||
{
|
||||
|
||||
|
||||
|
||||
// run tips on title attribute.
|
||||
$(".e-tip").each(function() {
|
||||
var tip = $(this).attr('title');
|
||||
@ -17,6 +20,7 @@ $(document).ready(function()
|
||||
// run tips on .field-help
|
||||
$("input,textarea,select,label,.e-tip").each(function(c) {
|
||||
|
||||
|
||||
$(this).nextAll(".field-help").hide();
|
||||
// alert('hello');
|
||||
$(this).tipsy({title: function() {
|
||||
@ -30,6 +34,9 @@ $(document).ready(function()
|
||||
|
||||
});
|
||||
|
||||
// $(".e-spinner").spinner();
|
||||
|
||||
|
||||
|
||||
$(".e-radio-multi").each(function() {
|
||||
// $(this).nextAll(".field-help").hide();
|
||||
@ -154,7 +161,8 @@ $(document).ready(function()
|
||||
|
||||
}
|
||||
|
||||
}).disableSelection();
|
||||
});
|
||||
// }).disableSelection(); // causes issue with admin->users drop-down selection.
|
||||
|
||||
|
||||
// Check ALl Button
|
||||
|
Loading…
x
Reference in New Issue
Block a user