mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #1369 from MetaMask/foxrevert
Revert the fox animation
This commit is contained in:
commit
a72f505090
@ -155,7 +155,7 @@ ConfigManager.prototype.getCurrentRpcAddress = function () {
|
||||
|
||||
case 'kovan':
|
||||
return KOVAN_RPC
|
||||
|
||||
|
||||
case 'rinkeby':
|
||||
return RINKEBY_RPC
|
||||
|
||||
|
@ -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 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)
|
||||
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,
|
||||
})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user