mirror of
https://github.com/resume/resume.github.com.git
synced 2025-12-30 15:49:30 -06:00
now catching exceptions in case a console instance is missing
This commit is contained in:
@@ -21,7 +21,11 @@ $(document).ready(function() {
|
||||
home();
|
||||
}
|
||||
} catch (err) {
|
||||
console.log(err);
|
||||
try {
|
||||
console.log(err);
|
||||
} catch (e) {
|
||||
/*fail silently*/
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user