Displaying 3 results from an estimated 3 matches for "eventmousedown".
2006 Apr 06
3
Drag and drop events. Or: How I learned to take over the world.
Hey all,
First, I just want to say thanks to all of you who read, and email
here frequently. So "Thanks".
Second, I have a little pet project. This one has not timelines,
and is mainly meant for my own personal growth and javascript
goodness. It is a drag and drop game, and it may not be 100%
possible to do everything I want with it. But that has not stopped
me from
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...;
this._isScrollChild = Element.childOf(this.element, options.scroll);
}
- Element.makePositioned(this.element); // fix IE
+ Element.makePositioned(this.element); // fix IE
this.options = options;
- this.dragging = false;
+ this.dragging = false;
this.eventMouseDown = this.initDrag.bindAsEventListener(this);
Event.observe(this.handle, "mousedown", this.eventMouseDown);
-
+
Draggables.register(this);
},
-
+
destroy: function() {
Event.stopObserving(this.handle, "mousedown", this.eventMouseDown);
Draggables.unr...
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