Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit 0ce624d

Browse files
committed
Tests: Add jQuery 3.0.0 to version dropdown and add to travis
Also removes jQuery 1.9 from travis
1 parent 90d6411 commit 0ce624d

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ before_script:
1818
script: npm run-script ci
1919

2020
env:
21-
- JQUERIES=1.9.1
22-
CITYPE=test
23-
SUITES=-navigation/sequence/sequence-dialog-hash-key-tests.html,-navigation/sequence/sequence-push-state-disabled-path1-path2-dialog-hash-key-tests.html,-navigation/sequence/sequence-path1-path2-dialog-hash-key-tests.html
2421
- JQUERIES=1.10.2
2522
CITYPE=test
2623
SUITES=-navigation/sequence/sequence-dialog-hash-key-tests.html,-navigation/sequence/sequence-push-state-disabled-path1-path2-dialog-hash-key-tests.html,-navigation/sequence/sequence-path1-path2-dialog-hash-key-tests.html
2724
- JQUERIES=1.11.3
2825
CITYPE=test
2926
SUITES=-navigation/sequence/sequence-dialog-hash-key-tests.html,-navigation/sequence/sequence-push-state-disabled-path1-path2-dialog-hash-key-tests.html,-navigation/sequence/sequence-path1-path2-dialog-hash-key-tests.html
30-
- JQUERIES=2.1.1
27+
- JQUERIES=2.2.4
28+
CITYPE=test
29+
SUITES=-navigation/sequence/sequence-dialog-hash-key-tests.html,-navigation/sequence/sequence-push-state-disabled-path1-path2-dialog-hash-key-tests.html,-navigation/sequence/sequence-path1-path2-dialog-hash-key-tests.html
30+
- JQUERIES=3.0.0
3131
CITYPE=test
3232
SUITES=-navigation/sequence/sequence-dialog-hash-key-tests.html,-navigation/sequence/sequence-push-state-disabled-path1-path2-dialog-hash-key-tests.html,-navigation/sequence/sequence-path1-path2-dialog-hash-key-tests.html
3333
- JQUERIES=git

js/vmouse.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ var dataPropertyName = "virtualMouseBindings",
4545
virtualEventNames = "vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel".split( " " ),
4646
generalProps = ( "altKey bubbles cancelable ctrlKey currentTarget detail eventPhase " +
4747
"metaKey relatedTarget shiftKey target timeStamp view which" ).split( " " ),
48-
mouseEventProps = $.event.props ? $.event.props.concat( generalProps ): generalProps,
48+
mouseHookProps = $.event.mouseHooks ? $.event.mouseHooks.props : [],
49+
mouseEventProps = generalProps.concat( mouseHookProps ),
4950
activeDocHandlers = {},
5051
resetTimerID = 0,
5152
startX = 0,

tests/lib/qunit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ QUnit.config.urlConfig.push( {
2323
"1.10.0", "1.10.1", "1.10.2",
2424
"1.11.0", "1.11.1", "1.11.2", "1.11.3",
2525
"2.0.0", "2.0.1", "2.0.2", "2.0.3",
26-
"2.1.0", "2.1.1", "2.1.2", "2.1.3",
26+
"2.1.0", "2.1.1", "2.1.2", "2.1.3", "3.0.0",
2727
"git"
2828
],
2929
tooltip: "Which jQuery Core version to test against"

0 commit comments

Comments
 (0)