1

I am following the documentation from here: https://github.com/Instagram/Realtime-Demo

Successfully installed all the libraries, however got this error on localhost unknown filter ":javascript"

The attached screenshot URL is the output when I hit the localhost in browser.

Any one has similar experience? How to fix? Very much appreciate!

screenshot: http://cl.ly/image/2N1M2f1p240n

4

1 回答 1

0

演示很旧,:javascript过滤器不再存在。

替换这个:

:javascript
  | socket.connect();
  | $(document).ready(Media.positionAll);

有了这个:

script
  socket.connect();
  $(document).ready(Media.positionAll);

(虽然我不能保证你不会遇到任何其他问题)

于 2013-04-02T12:29:01.693 回答