UNPKG

angular-ui-tree

Version:

An AngularJS UI component that can sort nested lists, provides drag & drop support and doesn't depend on jQuery

17 lines (12 loc) 322 B
(function () { 'use strict'; angular.module('ui.tree') .controller('TreeHandleController', ['$scope', '$element', function ($scope, $element) { this.scope = $scope; $scope.$element = $element; $scope.$nodeScope = null; $scope.$type = 'uiTreeHandle'; } ]); })();