Subversion Repositories bacoAlunos

Compare Revisions

Ignore whitespace Rev 1755 → Rev 1756

/branches/v3/impl/src/web/user/repositoryDocuments/showInterface.jsp
95,19 → 95,23
 
 
$('.repository-interface .collapse')
.on('shown.bs.collapse', function() {
$(this)
.parent()
.on('shown.bs.collapse', function(e) {
if ($(this).is(e.target)) {
$(this)
.parent().eq(0)
.find(".glyphicon-plus").eq(0)
.removeClass("glyphicon-plus")
.addClass("glyphicon-minus");
}
})
.on('hidden.bs.collapse', function() {
$(this)
.parent()
.find(".glyphicon-minus").eq(0)
.removeClass("glyphicon-minus")
.addClass("glyphicon-plus");
.on('hidden.bs.collapse', function(e) {
if ($(this).is(e.target)) {
$(this)
.parent().eq(0)
.find(".glyphicon-minus").eq(0)
.removeClass("glyphicon-minus")
.addClass("glyphicon-plus");
}
});