getCurrentGroup

caph.focus.focusController. getCurrentGroup

Gets the current focusable group.

(static) getCurrentGroup() → {string}

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