DG IZ; fixed javascript bug. stream fades in recents again.
This commit is contained in:
parent
25198a7e86
commit
44b25e3eaa
1 changed files with 9 additions and 10 deletions
|
|
@ -33,14 +33,13 @@
|
||||||
if((location.href.indexOf(obj['class']) != -1 ) || (location.pathname == '/')) {
|
if((location.href.indexOf(obj['class']) != -1 ) || (location.pathname == '/')) {
|
||||||
$("#stream").prepend($(obj['html']).fadeIn("fast"));
|
$("#stream").prepend($(obj['html']).fadeIn("fast"));
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
ws.onclose = function() { debug("socket closed"); };
|
ws.onclose = function() { debug("socket closed"); };
|
||||||
ws.onopen = function() {
|
ws.onopen = function() {
|
||||||
ws.send(location.pathname);
|
ws.send(location.pathname);
|
||||||
debug("connected...");
|
debug("connected...");
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
});
|
|
||||||
%body
|
%body
|
||||||
- flash.each do |name, msg|
|
- flash.each do |name, msg|
|
||||||
= content_tag :div, msg, :id => "flash_#{name}"
|
= content_tag :div, msg, :id => "flash_#{name}"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue