mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-19 12:53:27 +02:00
21 lines
281 B
JavaScript
21 lines
281 B
JavaScript
/**
|
|
* Connect Controller
|
|
*/
|
|
|
|
module.exports = function($scope, socket) {
|
|
|
|
$scope.chat = '';
|
|
|
|
$scope.send = function() {
|
|
if ($scope.chat.trim().length > 0) {
|
|
|
|
socket.emit('chat', {
|
|
message: $scope.chat.trim()
|
|
});
|
|
$scope.chat = '';
|
|
|
|
}
|
|
}
|
|
|
|
};
|