Minor fix. Vertical Divider :first-child :last-child elements removed.

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11752 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-10-17 04:51:38 +00:00
parent 76fa88edcb
commit cca3ea0668
2 changed files with 6 additions and 6 deletions

View file

@ -144,12 +144,12 @@ jQuery(function($){
return false;
}
});
// Vertical Rule Style
// Vertical Divider
$('.x i').each(function(){
var $this = $(this);
if($this.text() == '|'){
$this.addClass('vr');
}
$this.addClass('vr').filter(':first-child, :last-child').remove();
}
});
// label[for] + input[id]/textarea[id]/select[id] creator
$('label:not([for])').each(function(index){

View file

@ -144,12 +144,12 @@ jQuery(function($){
return false;
}
});
// Vertical Rule Style
// Vertical Divider
$('.x i').each(function(){
var $this = $(this);
if($this.text() == '|'){
$this.addClass('vr');
}
$this.addClass('vr').filter(':first-child, :last-child').remove();
}
});
// label[for] + input[id]/textarea[id]/select[id] creator
$('label:not([for])').each(function(index){