mirror of
https://github.com/ansible/awx.git
synced 2026-05-20 23:37:39 -02:30
Use eslint on ui/lib and ui/features code
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
const templateUrl = require('@components/layout/side-nav.partial.html');
|
||||
const templateUrl = require('~components/layout/side-nav.partial.html');
|
||||
|
||||
function atSideNavLink (scope, element, attrs, ctrl) {
|
||||
scope.layoutVm = ctrl;
|
||||
}
|
||||
|
||||
function AtSideNavController () {
|
||||
let vm = this || {};
|
||||
const vm = this || {};
|
||||
|
||||
vm.isExpanded = false;
|
||||
|
||||
vm.toggleExpansion = () => {
|
||||
vm.isExpanded = !vm.isExpanded;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function atSideNav () {
|
||||
|
||||
Reference in New Issue
Block a user