1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-12 18:46:20 +02:00

Fixes issue with admin->users drop-down menu.

This commit is contained in:
CaMer0n
2012-11-15 20:33:00 +00:00
parent acca6e9f48
commit b90c43ba14

View File

@ -1,5 +1,8 @@
$(document).ready(function() $(document).ready(function()
{ {
// run tips on title attribute. // run tips on title attribute.
$(".e-tip").each(function() { $(".e-tip").each(function() {
var tip = $(this).attr('title'); var tip = $(this).attr('title');
@ -17,6 +20,7 @@ $(document).ready(function()
// run tips on .field-help // run tips on .field-help
$("input,textarea,select,label,.e-tip").each(function(c) { $("input,textarea,select,label,.e-tip").each(function(c) {
$(this).nextAll(".field-help").hide(); $(this).nextAll(".field-help").hide();
// alert('hello'); // alert('hello');
$(this).tipsy({title: function() { $(this).tipsy({title: function() {
@ -30,6 +34,9 @@ $(document).ready(function()
}); });
// $(".e-spinner").spinner();
$(".e-radio-multi").each(function() { $(".e-radio-multi").each(function() {
// $(this).nextAll(".field-help").hide(); // $(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 // Check ALl Button