debug output
This commit is contained in:
parent
11b30671d4
commit
767b3024fa
1 changed files with 6 additions and 2 deletions
|
|
@ -2,10 +2,14 @@
|
||||||
function setup () {
|
function setup () {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
console.group('Document information');
|
||||||
console.info('\n', hippie.brand, '\n\n');
|
console.info('\n', hippie.brand, '\n\n');
|
||||||
console.info('Document information:\n', 'HTML:', hippie.screen, '\n', 'BODY:', hippie.body);
|
console.info('HTML:', hippie.screen, '\nBODY:', hippie.body);
|
||||||
|
console.groupEnd();
|
||||||
if (debugOn) {
|
if (debugOn) {
|
||||||
console.debug('Debug information:\n', 'HIPPIE:', hippie);
|
console.group('Debug information');
|
||||||
|
console.dir(hippie);
|
||||||
|
console.groupEnd();
|
||||||
}
|
}
|
||||||
|
|
||||||
// WANNABE MODULE Mouse over effect
|
// WANNABE MODULE Mouse over effect
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue