You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 22, 2021. It is now read-only.
In Angular 1.x, I added some custom code to handle this requirement, here is the code snippet
$scope.hackForBackspace = function(){
// if backspace return false
if(event.keyCode == 8){return false;}
}
This works fine in Chrome, but does not work in FF and IE.
Always 'Error: event is not defined' is coming in console log.
Even I tried to pass on-tag-removing="hackForBackspace($event);" - that also not working.
Please help.
The text was updated successfully, but these errors were encountered: