On Jan 16, 4:09 pm, Ian R <[email protected]> wrote:
[...]
> wrap: function() {
>
> var prev_value = this.orientation == 'horizontal' ? '←' :
> '↑';
> var next_value = this.orientation == 'horizontal' ? '→' :
> '↓';
>
> prev_value = prev_value.unescapeHTML();
> next_value = next_value.unescapeHTML();
>
> //make a new div for the top
> var w = new Element('div',{'class':'listwrap'});
>
> var h = this.el.select('h1');
var h = this.el.down('h1');
[...]
P.S. `unescapeHTML` should work. I'm not sure what could be the
problem there.
--
kangax
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---