getCurrentDepth

caph.focus.focusController. getCurrentDepth

Gets the current focusable depth.

(static) getCurrentDepth() → {number}

Returns:
Type
number
Example
angular.module('myApp', ['caph.focus']).controller('myController', ['$scope', 'focusController', function($scope, focusController) {
 	$scope.currentFocusableDepth = focusController.getCurrentDepth(); 
 }]);