/** * Buffer Controller */ module.exports = function($scope, socket, buffer) { // initial console buffer buffer.append('
'); buffer.append('Welcome to AlexKvazos\'s Minecraft Chat App'); buffer.append('> Press connect to connect to a Minecraft server and start chatting!'); buffer.append('---'); buffer.append('
'); };