mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2025-04-21 23:36:17 -04:00

Initially a lot of code was copied from another project. This lead to confusing naming conventions.
48 lines
1.4 KiB
HTML
48 lines
1.4 KiB
HTML
<link rel="import" href="text-input-dialog.html">
|
|
<script>
|
|
'use strict';
|
|
window.Snapdrop = window.Snapdrop || {};
|
|
(function() {
|
|
var textInput = Polymer.Base.create('text-input-dialog');
|
|
textInput.className = 'textInput';
|
|
document.body.appendChild(textInput);
|
|
Snapdrop.TextInputBehavior = {
|
|
properties: {
|
|
contact: Object,
|
|
},
|
|
get textInput() {
|
|
var textInput = Polymer.dom(document).querySelector('.textInput');
|
|
return textInput;
|
|
},
|
|
openTextDialog: function() {
|
|
this.textInput.open(this.contact);
|
|
},
|
|
|
|
listeners: {
|
|
'contextmenu': '_handleContextMenu',
|
|
'down': '_handleDown',
|
|
'up': '_handleUp',
|
|
},
|
|
_handleContextMenu: function(ev) {
|
|
ev.preventDefault();
|
|
ev.stopPropagation();
|
|
ev.cancelBubble = true;
|
|
this.cancelAsync(this.pressTimer);
|
|
this.openTextDialog();
|
|
return false;
|
|
},
|
|
_handleUp: function(e) {
|
|
this.cancelAsync(this.pressTimer);
|
|
},
|
|
_handleDown: function(ev) {
|
|
this.pressTimer = this.async(function() {
|
|
this.openTextDialog();
|
|
ev.preventDefault();
|
|
ev.stopPropagation();
|
|
ev.cancelBubble = true;
|
|
return false;
|
|
}, 800);
|
|
},
|
|
};
|
|
}());
|
|
</script>
|