Finish up debug wrappers, add note about supported Wii web tech to readme, finalize demo.

This commit is contained in:
Ryan McGrath 2011-07-11 09:27:20 -04:00
parent 7f4f81fa9e
commit e7249a0ed6
6 changed files with 81 additions and 17 deletions

View file

@ -31,21 +31,25 @@ Wii.util = {
* try { ... } catch(e) { Wii.util.debug(e); }
*/
debug: function(err) {
if(!Wii.debug) return;
if(Wii.util.msgNode === null) {
Wii.util.msgNode = document.createElement('div');
Wii.util.msgNode.style.cssText = [
'min-width: 776px;',
'min-width: 780px;',
'padding: 10px;',
'font-size: 28px;',
'line-height: 32px;',
'font-family: monospace;',
'position: absolute;',
'top: 20px;',
'top: 15px;',
'left: 0;',
'color: #f9f9f9;',
'background-color: #010101;',
'border: 2px solid #42a2cc;',
'opacity: .8',
'border-bottom: 2px solid #42a2cc;',
'opacity: .7;',
'font-weight: bold;'
].join('');
Wii.util.msgNode.addEventListener('click', Wii.util.hideDebugger, false);