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
| // Attention - This is a modified version of the csswizardry-grids by Harry Roberts - @csswizardy | |
| // It includes the AdobeBlank Font, which has to be declared under the variable $font-blank | |
| // This way you don't have to rely on whitespace or letter-spacing hacks. Idea by @dennisausbremen | |
| // You can find Adobe Blank here: http://blogs.adobe.com/typblography/2013/03/introducing-adobe-blank.html | |
| // I changed the namespaces. Using Variables like "one-twelves" is very uncommon for | |
| // non-english people, so i changed it to "u-1-12" (the u is for "unit") | |
| // Also i changed the comment syntax to the native Sass Syntax. |
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(){ | |
| var socket = io.connect('http://localhost:8080'); | |
| socket.on('tweet', function(tweet) { | |
| $('body').append('<div class="tweet">' + tweet.text + '</div>'); | |
| }); | |
| }); |