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

Commit 1a82a1a

Browse files
committed
pointer events: initial addition of polymer polyfill
1 parent 039c0b6 commit 1a82a1a

37 files changed

+62127
-182
lines changed

Gruntfile.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ module.exports = function( grunt ) {
99
.replace( /\.\.\/css/, "css" )
1010
.replace( /jquery\.mobile\.css/, processedName + ".min.css" );
1111
},
12-
1312
// Ensure that modules specified via the --modules option are in the same
1413
// order as the one in which they appear in js/jquery.mobile.js. To achieve
1514
// this, we parse js/jquery.mobile.js and reconstruct the array of
@@ -882,7 +881,8 @@ module.exports = function( grunt ) {
882881
}
883882
}
884883
},
885-
884+
browserstack_runner: {
885+
},
886886
coveralls: {
887887
options: {
888888
force: true
@@ -957,6 +957,9 @@ module.exports = function( grunt ) {
957957
files: {
958958
"jquery/plugins/jquery.hashchange.js": "jquery-hashchange/jquery.ba-hashchange.js"
959959
}
960+
},
961+
"pointerevents-polyfill": {
962+
src: "pointerevents-polyfill/src"
960963
}
961964
},
962965

@@ -1020,6 +1023,8 @@ module.exports = function( grunt ) {
10201023

10211024
grunt.registerTask( "updateDependencies", [ "bowercopy" ] );
10221025

1026+
grunt.registerTask( "testBrowserstack", [ "browserstack_runner" ] );
1027+
10231028
grunt.registerTask( "test:demos:src", [ "php", "casper:demos.src" ] );
10241029

10251030
grunt.registerTask( "test:demos:dist", [ "casper:demos.dist" ] );

bower.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"jquery": "1.10.2",
1818
"jquery-ui": "jquery/jquery-ui#c0ab71056b936627e8a7821f03c044aec6280a40",
1919
"jquery-ui-tabs": "jquery/jquery-ui#fadf2b312a05040436451c64bbfaf4814bc62c56",
20-
"jquery-hashchange": "gseguin/jquery-hashchange#2da0c56fd418fa323c136254f971b6176f1ae135"
20+
"jquery-hashchange": "gseguin/jquery-hashchange#2da0c56fd418fa323c136254f971b6176f1ae135",
21+
"pointerevents-polyfill": "Polymer/PointerEvents#0.2.4"
2122
},
2223
"devDependencies": {
2324
"requirejs": "2.1.2",

0 commit comments

Comments
 (0)