Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. var startErrorTracking = function(){
  2. window.addEventListener('error', function (err) {
  3. var lineAndColumnInfo = err.colno ? ' line:' + err.lineno +', column:'+ err.colno : ' line:' + err.lineno;
  4. push.call(this, 'FrontendError',
  5. err.message,
  6. err.filename + lineAndColumnInfo + ' -> ' + navigator.userAgent);
  7. });
  8. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement