Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #138 from codecounselor/master
Browse files Browse the repository at this point in the history
Changed let to var to increase browser compatibility.  Only the lates…
  • Loading branch information
tangollama committed Jul 13, 2015
2 parents cdc5f56 + 7f4e331 commit 7ea3232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/nav-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default Ember.Component.extend(UserSession, {
isShowing: false,

_setup: function() {
let nav = this.get("nav");
var nav = this.get("nav");
nav.closeSubnav = function() {
this.set('isShowing', false);
}.bind(this);
Expand Down

0 comments on commit 7ea3232

Please sign in to comment.