Home
last modified time | relevance | path

Searched refs:Event (Results 301 – 313 of 313) sorted by last modified time

1...<<111213

/plugin/s5reloaded/ui/effects_support/
H A Ddragdrop.js114 if (this.isAffected([Event.pointerX(event), Event.pointerY(event)], element, this.last_active))
172 var pointer = [Event.pointerX(event), Event.pointerY(event)];
304 if(Event.isLeftClick(event)) {
306 var src = Event.element(event);
314 var pointer = [Event.pointerX(event), Event.pointerY(event)];
319 Event.stop(event);
394 Event.stop(event);
402 var pointer = [Event.pointerX(event), Event.pointerY(event)];
445 if(event.keyCode!=Event.KEY_ESC) return;
447 Event.stop(event);
[all …]
H A Dunittest.js11 Event.simulateMouse = function(element, eventName) {
47 Event.simulateKey = function(element, eventName) {
64 Event.simulateKeys = function(element, command) {
66 Event.simulateKey(element,'keypress',{charCode:command.charCodeAt(i)});
129 Event.observe(td, 'click', function(){ window.location.search = "?tests=" + td.innerHTML;});
133 Event.observe(td, 'click', function(){ window.location.search = "";});
H A Deffects.js342 Effect.Event = Class.create(Effect.Base, {
H A Dprototype.js4266 var Event = { class
4316 event = Event.extend(event);
4365 Event.extend(event);
4372 Event.Methods = {
4427 Event.prototype = window.Event.prototype || document.createEvent('HTMLEvents').__proto__; class
4429 Event.extend = Prototype.K;
4625 return Event.extend(event);
4629 Object.extend(Event, Event.Methods);
4631 Object.extend(Event, {
4655 if (window.Event) Object.extend(window.Event, Event);
[all …]
H A Dslider.js92 Event.stopObserving(this.track, "mousedown", this.eventMouseDown);
93 Event.stopObserving(document, "mouseup", this.eventMouseUp);
94 Event.stopObserving(document, "mousemove", this.eventMouseMove);
96 Event.stopObserving(h, "mousedown", slider.eventMouseDown);
204 if (Event.isLeftClick(event)) {
208 var handle = Event.element(event);
209 var pointer = [Event.pointerX(event), Event.pointerY(event)];
236 Event.stop(event);
244 Event.stop(event);
248 var pointer = [Event.pointerX(event), Event.pointerY(event)];
[all …]
H A Dcontrols.js132 case Event.KEY_TAB:
135 Event.stop(event);
136 case Event.KEY_ESC:
139 Event.stop(event);
141 case Event.KEY_LEFT:
144 case Event.KEY_UP:
147 Event.stop(event);
149 case Event.KEY_DOWN:
152 Event.stop(event);
156 if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN ||
[all …]
/plugin/jquery-syntax/
H A Djquery-1.6.min.js16Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp… class in f
/plugin/tline/timeline_js/
H A Dtimeline-bundle.js2297 var K=new Timeline.DefaultEventSource.Event({id:D.getAttribute("id"),start:E(D.getAttribute("start"…
2317 var L=new Timeline.DefaultEventSource.Event({id:("id" in A)?A.id:undefined,start:E(A.start),end:E(A…
2344 var M=new Timeline.DefaultEventSource.Event({id:D["id"],start:G(D["start"]),end:G(D["end"]),latestS…
2397 Timeline.DefaultEventSource.Event=function(A){function D(E){return(A[E]!=null&&A[E]!="")?A[E]:null; class in Timeline.DefaultEventSource
2437 Timeline.DefaultEventSource.Event.prototype={getID:function(){return this._id;
/plugin/tline/
H A DCHANGES.txt12 * Event tape heights now use theme.event.tape.height. Better than using css since:
43 issue 13 - TIMELINE: Event labels wrap on FF 3 on Mac
44 issue 30 - TIMELINE : Event labels wrap when 'classname' attribute is added and text is bold
206 * Event attribute classname is added to the classnames for the event's label
211 * Re-worked function Timeline.DefaultEventSource.Event in sources.js to use
215 Note: this is a breaking change for anyone who calls Event directly. But since
225 * Event attributes barImage and barRepeat renamed to tapeImage and tapeRepeat.
228 * Fix: Event color attribute now properly sets the background color of the bar.
236 * Fix: Event attribute hoverText was not properly processed by JSON or SPARCL sources
/plugin/jdraw/src/com/mxgraph/examples/swing/
H A DGraphEditor.java.bak313 "Event",
318 80, 80, "Event");
/plugin/jquery/
H A Djquery-1.4.2.min.js52 …,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.ind…
56 fix:function(a){if(a[G])return a;var b=a;a=c.Event(b);for(var d=this.props.length,f;d;){f=this.prop…
58 …)}:function(a,b,d){a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new… class in c
59 a;this.type=a.type}else this.type=a;this.timeStamp=J();this[G]=true};c.Event.prototype={preventDefa…
66 …c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){a=c.Event(a);a.preventDefaul…
H A Djquery-1.4.2.js1807 jQuery.extend( jQuery.Event(type), event ) :
1809 jQuery.Event(type);
1966 event = jQuery.Event( originalEvent );
2076 jQuery.Event = function( src ) { class in jQuery
2079 return new jQuery.Event( src );
2108 jQuery.Event.prototype = {
2432 var event = jQuery.Event( type );
H A Dscript.js19Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stop… class in o

1...<<111213