Skip to content

Commit d9e2d2a

Browse files
committed
Fix console logging.
1 parent eb8ebca commit d9e2d2a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/Scripts/BooleanOperations.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
var container = document.getElementById('container');
2222

2323
function runTest(testName, handler) {
24-
console.log('\n' + testName);
2524
var caption = document.createElement('h3');
2625
var canvas = document.createElement('canvas');
2726
caption.appendChild(document.createTextNode(testName));
2827
container.appendChild(caption);
2928
container.appendChild(canvas);
3029
setTimeout(function() {
30+
console.log('\n' + testName);
3131
paper.setup(canvas);
3232
var paths = handler();
3333
testBooleanStatic(paths[0], paths[1]);

0 commit comments

Comments
 (0)