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
/** | |
* Provides requestAnimationFrame in a cross browser way. | |
* @author paulirish / http://paulirish.com/ | |
*/ | |
if ( !window.requestAnimationFrame ) { | |
window.requestAnimationFrame = ( function() { | |
return window.webkitRequestAnimationFrame || |
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
Last login: Tue Mar 29 16:42:49 2016 | |
vagrant@vagrant-ubuntu-trusty-32:~$ cd /vagrant/forum | |
vagrant@vagrant-ubuntu-trusty-32:/vagrant/forum$ python forum.py | |
Serving HTTP on port 8000... | |
Traceback (most recent call last): | |
File "/usr/lib/python2.7/wsgiref/handlers.py", line 85, in run | |
self.result = application(self.environ, self.start_response) | |
File "forum.py", line 95, in Dispatcher | |
return DISPATCH[page](env, resp) | |
File "forum.py", line 53, in View |