aboutsummaryrefslogtreecommitdiffstats
path: root/test/testabilityPatch.js
diff options
context:
space:
mode:
authorMisko Hevery2010-04-06 14:04:08 -0700
committerMisko Hevery2010-04-06 14:04:08 -0700
commitee327a1f4f75f57c2a2c6166520c092d4942ffe0 (patch)
treec63825342f1836ab667d2cabfb178e98e96240ec /test/testabilityPatch.js
parente6460685869e16b5016de975fd0ba15a7e436951 (diff)
downloadangular.js-ee327a1f4f75f57c2a2c6166520c092d4942ffe0.tar.bz2
few fixes to make tests pass with jquery
Diffstat (limited to 'test/testabilityPatch.js')
-rw-r--r--test/testabilityPatch.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/testabilityPatch.js b/test/testabilityPatch.js
index dc67ddec..475784ad 100644
--- a/test/testabilityPatch.js
+++ b/test/testabilityPatch.js
@@ -27,6 +27,12 @@ extend(angular, {
});
+function trigger(element, type) {
+ var evnt = document.createEvent('MouseEvent');
+ evnt.initMouseEvent(type, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
+ (element[0] || element).dispatchEvent(evnt);
+}
+
function sortedHtml(element) {
var html = "";
(function toString(node) {