This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>BEM make</title> | |
<meta charset='utf-8'> | |
</head> | |
<body> | |
<textarea id='bemstruct'>container | |
container__contact-us |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.onerror = function(text, file, line){ | |
alert('An error occured in file ' + file | |
+ ' at line ' + line | |
+ ':\n' | |
+ text | |
); | |
} |