in reply to Re^3: Free Nodelet Hack: Add parent & root links to nodes in 'Nodes You Wrote' (escape)
in thread Have parent 'Node ID' as link in 'Nodes You Wrote' node
root is a URI component, so it could be escaped.
if ( decodeURIComponent(`_redir"`) == "root" )
I've discussed the need for a variables returned as JavaScript literals before. I even provided a workaround.
if ( decodeURIComponent(decodeURIComponent('`_redir%`')) == "root" )
if ( decodeURIComponent( '`_redir%`' ) == "root" )
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Free Nodelet Hack: Add parent & root links to nodes in 'Nodes You Wrote' (escape)
by tye (Sage) on Dec 22, 2006 at 18:32 UTC | |
by ikegami (Patriarch) on Dec 22, 2006 at 18:51 UTC |