keeps saying loading messages although i am searching for obama ?

does jquery update related

Comments

abqaria’s picture

sorry my mistake u need to edit the trend nit just add the trend

mohammed j. razem’s picture

Status: Active » Fixed
VFrolov’s picture

Status: Fixed » Active

Tabs 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.

VFrolov’s picture

As 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;

bdanchilla’s picture

Yeah, 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.