Files
2013-08-28 17:42:44 -05:00

19 lines
395 B
JavaScript

var chat = angular.module('Chat', ['ngTouch']);
chat.controller('MenuCtrl', function($scope) {
$scope.isPanelShowing = false;
});
chat.controller('RoomsCtrl', function($scope) {
$scope.rooms = [
{ name: 'All', key: 'all' },
{ name: 'Marketing', key: 'marketing' }
];
$scope.openPanel = function() {
console.log('Open panel');
$scope.isPanelShowing = true;
};
});