Active
Project:
Juitter - jQuery Twitter live search feeds
Version:
6.x-1.3
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
10 Oct 2009 at 14:21 UTC
Updated:
1 Jan 2010 at 23:07 UTC
Comments
Comment #1
abqaria commentedsorry my mistake u need to edit the trend nit just add the trend
Comment #2
mohammed j. razemComment #3
VFrolov commentedTabs with hashtags as keywords (with the "#" symbol) say "Loading...", but don't ever load anything.
This issue is reproduced at the demo site (http://drubots.com/juitter) as well (#amman and #kharabeesh tags). Just the "Loading..." label is not shown.
Comment #4
VFrolov commentedAs for the bug described in my last message, the fix is very simple.
The search keywords need to be escaped in jquery.juitter.js in line 86.
else if(mode=="searchWord") url=apiSEARCH+param+jlg;needs to be changed to:
else if(mode=="searchWord") url=apiSEARCH+escape(param)+jlg;Comment #5
bdanchilla commentedYeah, a different workaround I found was to use '%23dog' instead of '#dog', for instance, in the search term. I will send an email to the juitter plugin developer.
However, it would be nice for now if this was documented somewhere within the module UI.