[Proto-Scripty] Using HTTPS

2008-09-23 Thread bob
How can I use https calls with the prototype ? --~--~-~--~~~---~--~~ 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 prototype-scriptaculous@googlegroups.com To

[Proto-Scripty] Re: Using HTTPS

2008-09-23 Thread Walter Lee Davis
If the parent page is https, then any calls from within that page will be https, no extra effort needed. I did a site last year, demo'd it on regular http, moved it to https, made absolutely no changes to code and everything in the site (regular requests and Ajax) is in https. Make sure

[Proto-Scripty] Re: Is there an event or method to determine when an animation has completed

2008-09-23 Thread jdalton
http://github.com/madrobby/scriptaculous/wikis/core-effects the afterFinish callback. --~--~-~--~~~---~--~~ 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

[Proto-Scripty] Re: runtime error r6025 ie6 - Anyone seen this???

2008-09-23 Thread PhillipS
I resolved the issue that I was having by correcting some loose markup. I was using label instead of label for=password, and IE hates when you are not explicit. Still, crashing the browser is an extreme ramification for a markup error. Sorry to have posted it here as it is obviously not a

[Proto-Scripty] Problems getting stopObserving to work

2008-09-23 Thread FigglesKoy
I have some code for a lightbox below: LightBox.prototype.showBox = function(){ ... //Assign event handlers this.okBtn = this.lbElm.select('INPUT.control.ok')[0]; if(this.okBtn) { this.okBtn.observe('click', this.okClick.bind(this));

[Proto-Scripty] Re: Problems getting stopObserving to work

2008-09-23 Thread Jerod Venema
On Tue, Sep 23, 2008 at 3:05 PM, FigglesKoy [EMAIL PROTECTED] wrote: I have some code for a lightbox below: LightBox.prototype.showBox = function(){ ... //Assign event handlers this.okBtn = this.lbElm.select('INPUT.control.ok')[0]; if(this.okBtn) {