Skip to content

Commit

Permalink
Another minor change in collapse
Browse files Browse the repository at this point in the history
  • Loading branch information
ozguruysal committed Aug 25, 2016
1 parent a0ced28 commit e70a3a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Default.aspx
Expand Up @@ -203,7 +203,7 @@
<li class="separator"></li>
<li>
<a href="#" data-toggle="collapse" data-target="#archives"><i class="fa collapse-icon"></i> Archives</a>
<ul class="collapse" id="#archives">
<ul class="collapse" id="archives">
<li class="section-title">Ext.NET 3</li>
<li><a href="http://examples3.ext.net/">Web Forms Examples (3.3)</a></li>
<li><a href="http://mvc3.ext.net/">MVC Examples (3.3)</a></li>
Expand Down
2 changes: 1 addition & 1 deletion src/resources/js/main.js
Expand Up @@ -27,7 +27,7 @@ Ext.onReady(function () {
e.preventDefault();

this.toggleCls("expanded");
Ext.get((this.getAttribute("data-target"))).toggleCls("expanded");
Ext.get((this.getAttribute("data-target")).substring(1)).toggleCls("expanded");
}
});
});
Expand Down

0 comments on commit e70a3a2

Please sign in to comment.