From c97a452ccabfc6ddbc4e1ef9402af270a8b63723 Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Thu, 5 Jun 2008 11:56:20 +0000 Subject: [PATCH] Removed case insensitive checks: no method or event names are case insensitive --- ui/tests/jquery.simulate.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ui/tests/jquery.simulate.js b/ui/tests/jquery.simulate.js index d6ddf4dd4..c498293dc 100644 --- a/ui/tests/jquery.simulate.js +++ b/ui/tests/jquery.simulate.js @@ -24,7 +24,7 @@ $.simulate = function(el, type, options) { this.target = el; this.options = options; - if (/^drag$/i.test(type)) { + if (/^drag$/.test(type)) { this[type].apply(this, [this.target, options]); } else { this.simulateEvent(el, type, options); @@ -39,9 +39,9 @@ $.extend($.simulate.prototype, { return this.dispatchEvent(el, type, evt, options); }, createEvent: function(type, options) { - if (/^mouse(over|out|down|up|move)|(dbl)?click$/i.test(type)) { + if (/^mouse(over|out|down|up|move)|(dbl)?click$/.test(type)) { return this.mouseEvent(type, options); - } else if (/^key(up|down|press)$/i.test(type)) { + } else if (/^key(up|down|press)$/.test(type)) { return this.keyboardEvent(type, options); } }, @@ -65,8 +65,8 @@ $.extend($.simulate.prototype, { // check to see if relatedTarget has been assigned if (relatedTarget && !evt.relatedTarget) { - if (/^mouseout$/i.test(type)) evt.toElement = relatedTarget; - else if (/^mouseover$/i.test(type)) evt.fromElement = relatedTarget; + if (/^mouseout$/.test(type)) evt.toElement = relatedTarget; + else if (/^mouseover$/.test(type)) evt.fromElement = relatedTarget; } } else if (document.createEventObject) { @@ -142,7 +142,7 @@ $.extend($.simulate.prototype, { (self.options.drag && self.options.drag($.event.fix(evt))); }; - if (/^sync$/i.test(options.speed)) { + if (/^sync$/.test(options.speed)) { // trigger synchronous simulation this.triggerSync(center, dx, dy, drag); } -- 2.39.5