8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87c3328 commit 41ca7b2Copy full SHA for 41ca7b2
examples/skeleton/javascript/main.js
@@ -16,5 +16,4 @@ gamejs.ready(function() {
16
};
17
gamejs.time.fpsCallback(tick, this, 26);
18
**/
19
-
20
});
examples/skeleton/public/yabble.js
@@ -321,7 +321,7 @@
321
if (e instanceof SyntaxError) {
322
var msg = 'Syntax Error: ';
323
if (e.lineNumber) {
324
- msg += 'line ' + e.lineNumber;
+ msg += 'line ' + (e.lineNumber - 581);
325
} else {
326
console.log('GameJs tip: use Firefox to see line numbers in Syntax Errors.');
327
}
0 commit comments