Created
March 18, 2011 14:05
-
-
Save kinsteronline/876119 to your computer and use it in GitHub Desktop.
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
| function PitBoss() { | |
| this.version = function() { | |
| return '0.0.0.0.0.1'; | |
| }; | |
| this.craps = function() { | |
| return('<html><body>CRAP(S)! ver#' + version() + '</body></html>'); | |
| }; | |
| } | |
| function TableTalk() { | |
| var self = this; | |
| var version = '0.0.0.0.0.0.1a'; | |
| self.chit = function(in) { | |
| return '<span class="chatty ' + version + '">' + in + '</span>'; | |
| }; | |
| self.chat = function(out) { | |
| return '<span class="kathy ' + version + '">' + out + '</span>'; | |
| }; | |
| } | |
| exports.PitBoss = PitBoss; | |
| exports.TableTalk = TableTalk; | |
Author
This is gross. The tables module I sent you in my pull request is intended to be totally "prototypal" as it progresses.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A little better, next up a prototype version