Sorry, we're using the SVN version of script.aculo.us...which has v1.5pre0 of prototype. Its a new function. Careful when removing the strip() function, it *could* cause themes to break. You can just replace it with a regex to remove whitespace if that's the case.

-Jerod

On 3/3/06, Michael Peters <[EMAIL PROTECTED]> wrote:


Marco M. Jaeger wrote:
> The dialog script has been updated – thanks to Jerod we were able to add
> themes – please see changelog for further details and fixes.
>
>
>
> The latest version can be downloaded from here:
> http://www.net4visions.com/dev/downloads/dialog.zip

The only problem I had was that I need to get rid of a string method you were
using called strip(). I'm not sure which library was supposed to provide this
method, but it didn't exist.


line #372 was:
  function(include) { themes.push(include.strip());
Dialogs.require(path,include.strip()); }

was changed to:
  function(include) { themes.push(include); Dialogs.require(path,include); }

--
Michael Peters
Developer
Plus Three, LP

_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

Reply via email to