UNPKG

unserver-unify

Version:

20 lines (17 loc) 377 B
'use strict'; angular.module('bamboo.help') .controller('HelpGenxCtrl', function($scope) { var self = this; this.tab="process"; this.toggledrop = function() { if ($scope.dropdown) { $scope.dropdown = false; } else { $scope.dropdown = true; } } this.setTab=function(tab){ console.log(tab); self.tab=tab; } });