style(scopeTree): fix deep indentation

master
Brian Ford 10 years ago
parent fce0052322
commit ca0dc695e5

@ -9,8 +9,10 @@ function batScopeTreeDirective($compile) {
scope: {
batModel: '='
},
link: function (scope, element, attrs) {
link: batScopeTreeLink
};
function batScopeTreeLink(scope, element, attrs) {
// scope.$id > DOM node
var map = {};
var selectedElt = angular.element();
@ -78,7 +80,6 @@ function batScopeTreeDirective($compile) {
});
}
};
}
@ -94,4 +95,3 @@ function newBranchElement(descriptor) {
'</span>',
'</ol>'].join(''));
}