mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
19 lines
395 B
JavaScript
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;
|
|
};
|
|
});
|
|
|