question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Update method doesn't trigger in IE11

See original GitHub issue

Hey,

I’ll come back and properly fill out this issue this afternoon, but thought I would just put it here before I forget.

The this.update method doesn’t seem to ever get fired in IE11 or below. However the this.process one does.

I have temporarily updated the this.process method to the following (i expanded the if statements while I was debugging) and remove the update method

/**
* Validate value before update the component.
* @param {Number} value
*/
process: function(value) {
	if (value >= this.max) {
		value = this.max;
	}
	if (value <= this.min) {
		value = this.min;
	}
	if (!this.minus && value < 0) {
		value = this.min >= 0 ? this.min: 0;
	}

	this.$emit('input', Number(accounting.toFixed(value, this.precision)));
},

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:1
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

2reactions
kevinongkocommented, Nov 17, 2017

Fixed in 2.2.7

0reactions
tjrchampioncommented, Nov 15, 2017

Any follow up on this? Experiencing the exact same problem in IE 11.

Read more comments on GitHub >

github_iconTop Results From Across the Web

IE 11, Data from server not update - Stack Overflow
I have strange problem with IE11 only. I have form in my app, when I fill all inputs and try save, request to...
Read more >
Install problems with Internet Explorer 11 - Microsoft Learn
Run Windows Update, clicking Check for updates. Check the list for IE11. If it's included in the list of updates for download, exclude...
Read more >
IE11 does not update a blank page opened with Window ...
A window opened by Internet Explorer 11 by calling Window.Open() method won't be updated properly. For example, the issue is reproducible by the...
Read more >
How to Support IE11 Users as You Move to Angular 13 - Bitovi
To sum it all up, there are two main ways to support IE 11. You can update your tsconfig.json , or you can...
Read more >
BizFlow UI function doesn't work with both IE11 and Google ...
IE 11 Version: 11.0.9600.18349 Update Versions: 11.0.32 (KB3160005) Issue: the design layout is now shown correctly and nothing happened after clicking the ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found