This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// you need to take out this line for it to work with node 0.6+: | |
// comment out this line in the dust/lib/server.js file after "npm install dust": | |
require.paths.unshift(path.join(__dirname, '..')); | |
// otherwise, you'll get: | |
/* | |
node test/server.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(window.Audio) { | |
var audio = new Audio("notification.ogg") | |
} | |
var name = "" | |
var name_el = <input maxlength=18 placeholder=_Name> | |
var name_error_el | |
var name_form_el | |
var message_list_el | |
var message_form_el | |
var message_ids = {} |
NewerOlder