search for: afterupd

Displaying 5 results from an estimated 5 matches for "afterupd".

Did you mean: afterend
2005 Aug 25
0
[PATCH] do not use beforeStart, afterFinish, beforeUpdate, and afterUpdate internally in combination effects
Hello, my patch separates usage of the callback between the user, combination effects, and the core effects. Consider these use cases. a) user - core effects b) user - combination effects - core effects For a), the existing callbacks can be used by the user For b), the existing callbacks are partly used by the combination effects as a communication channel to the core effects, therefore they
2005 Jul 28
0
fix in effects.js
...ons.to) { if(this.options.transition) pos = this.options.transition(pos); pos = pos * (this.options.to-this.options.from); pos += this.options.from; } if(this.options.beforeUpdate) this.options.beforeUpdate(this); if(this.update) this.update(pos); if(this.options.afterUpdate) this.options.afterUpdate(this); }, that is the render command for Effect.Base.prototype If you notice i tell it only only figure out what the value should be in the variable pos is not equal to what you want to set the options.to value. Please let me know if this is correct or you wou...
2006 Apr 14
1
Script.aculo.us Effects with callbacks not working as it should.
...ts[''editor''], content_elements[''editor_textarea'']) }); new Effect.Appear( content_elements[''content_node''], { queue: ''end'', duration: 2.0, afterUpdate: resize_content_or_editor(content_elements[''content_or_editor''], content_elements[''content_node'']) }); new Effect.Highlight( content_elements[''content_node''], { queue: ''end...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...var bounds = this.getTokenBounds(); if (bounds[0] != -1) { var newValue = this.element.value.substr(0, bounds[0]); @@ -257,7 +257,7 @@ Autocompleter.Base = Class.create({ } this.oldElementValue = this.element.value; this.element.focus(); - + if (this.options.afterUpdateElement) this.options.afterUpdateElement(this.element, selectedElement); }, @@ -269,20 +269,20 @@ Autocompleter.Base = Class.create({ Element.cleanWhitespace(this.update.down()); if(this.update.firstChild && this.update.down().childNodes) { - this.entryCou...
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server