-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App-level support for passive gesture touch listeners #4829
Merged
Merged
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,5 +93,15 @@ | |
Polymer.setSanitizeDOMValue = function(newSanitizeDOMValue) { | ||
Polymer.sanitizeDOMValue = newSanitizeDOMValue; | ||
}; | ||
|
||
/** | ||
* Globally settable property to make Polymer Gestures use passive TouchEvent listeners when recognizing gestures. | ||
* When set to `true`, gestures made from touch will not be able to prevent scrolling, allowing for smoother | ||
* scrolling performance. | ||
* Defaults to `false` for backwards compatibility. | ||
* | ||
* @memberof Polymer | ||
*/ | ||
Polymer.passiveTouchGestures = Polymer.passiveTouchGestures || false; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be a function for forward compatibility |
||
})(); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!doctype html> | ||
<!-- | ||
@license | ||
Copyright (c) 2017 The Polymer Project Authors. All rights reserved. | ||
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt | ||
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | ||
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt | ||
Code distributed by Google as part of the polymer project is also | ||
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt | ||
--> | ||
<html> | ||
<head> | ||
<script src="../../../webcomponentsjs/webcomponents-loader.js"></script> | ||
<script>Polymer = {passiveTouchGestures: true}</script> | ||
<link rel="import" href="../../polymer.html"> | ||
<style> | ||
html, body { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<dom-module id="x-passive"> | ||
<template> | ||
<style> | ||
:host { | ||
display: block; | ||
height: 2000px; | ||
background-color: -webkit-gradient(linear, left top, left bottom, from(blue), to(red)); | ||
background-image: -webkit-linear-gradient(top, blue, red); | ||
background-image: -moz-linear-gradient(top, blue, red); | ||
background-image: linear-gradient(to bottom, blue, red); | ||
} | ||
</style> | ||
</template> | ||
</dom-module> | ||
<script> | ||
Polymer({ | ||
is: 'x-passive', | ||
listeners: { | ||
'down': 'prevent', | ||
'move': 'prevent' | ||
}, | ||
prevent(e) { | ||
e.preventDefault(); | ||
console.log('prevented!'); | ||
} | ||
}); | ||
</script> | ||
<x-passive></x-passive> | ||
</body> | ||
</html> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
passiveTouchGestures
should be a function for forward compat.