Issue 2139 fixed. When user click in '.h2 or .h3' area toggle button, unexpected layer is opened. Exception implement .langEdit .tgContent .modal layer as toggle content.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10881 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-07-13 02:54:28 +00:00
parent 4a3419ada7
commit 650910ff53
2 changed files with 2 additions and 2 deletions

View file

@ -1240,7 +1240,7 @@ jQuery(function($){
$(this).append($sTog);
$sTog.click(function(){
var $t = $(this);
var $sTogObj = $t.parent().nextUntil('.h2, .h3');
var $sTogObj = $t.parent().nextUntil('.h2, .h3').not('.langEdit, .tgContent, .modal');
if($t.parent().next().is(':hidden')){
$t.find('i').attr('class','icon-chevron-up');
$sTogObj.slideDown(200);

File diff suppressed because one or more lines are too long