mirror of
https://github.com/e107inc/e107.git
synced 2025-10-10 12:34:49 +02:00
bootstrap $frm->radio fixes. $frm->label() and $frm-radio_multi() should not be used.
This commit is contained in:
@@ -108,6 +108,12 @@ $(document).ready(function()
|
||||
// On
|
||||
$(".e-expandit-on").click(function () {
|
||||
|
||||
if($(this).is("input") && $(this).attr("type")=='radio')
|
||||
{
|
||||
idt = $(this).parent().nextAll("div.e-expandit-container");
|
||||
$(idt).show("slow");
|
||||
return true;
|
||||
}
|
||||
var href = ($(this).is("a")) ? $(this).attr("href") : '';
|
||||
|
||||
if(href === "#" || href == "")
|
||||
@@ -133,6 +139,13 @@ $(document).ready(function()
|
||||
// Off.
|
||||
$(".e-expandit-off").click(function () {
|
||||
|
||||
if($(this).is("input") && $(this).attr("type")=='radio')
|
||||
{
|
||||
idt = $(this).parent().nextAll("div.e-expandit-container");
|
||||
$(idt).hide("slow");
|
||||
return true;
|
||||
}
|
||||
|
||||
var href = ($(this).is("a")) ? $(this).attr("href") : '';
|
||||
|
||||
if(href === "#" || href == "")
|
||||
|
Reference in New Issue
Block a user