Merge pull request #291 from Zokormazo/fix-const

Use const instead of let on never reassigned var
This commit is contained in:
Greg Considine
2017-09-26 09:45:42 -04:00
committed by GitHub

View File

@@ -11,7 +11,7 @@ function atSideNavLink (scope, element, attrs, ctrl) {
}
function AtSideNavController ($scope, $window) {
let vm = this || {};
const vm = this || {};
const breakpoint = 700;
vm.isExpanded = false;