1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge pull request #1362 from MetaMask/FoxLookAway

Make fox look away while typing password
This commit is contained in:
Kevin Serrano 2017-05-01 09:00:32 -07:00 committed by GitHub
commit b466de8306
2 changed files with 8 additions and 6 deletions

View File

@ -2,6 +2,8 @@
## Current Master
- Made fox less nosy.
## 3.6.1 2017-4-25
- Fix bug where error was reported in debugger console when Chrome opened a new window.

View File

@ -109,10 +109,10 @@ UnlockScreen.prototype.submitPassword = function (event) {
UnlockScreen.prototype.inputChanged = function (event) {
// tell mascot to look at page action
var element = event.target
var boundingRect = element.getBoundingClientRect()
var coordinates = getCaretCoordinates(element, element.selectionEnd)
this.animationEventEmitter.emit('point', {
x: boundingRect.left + coordinates.left - element.scrollLeft,
y: boundingRect.top + coordinates.top - element.scrollTop,
})
var viewRect = element.getBoundingClientRect()
var carat = getCaretCoordinates(element, element.selectionEnd)
var x = viewRect.right - carat.left + element.scrollLeft
var y = 100
var pointAt = { x, y }
this.animationEventEmitter.emit('point', pointAt)
}