Skip to content

Commit

Permalink
Bump to 0.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
richgilbank committed Jul 14, 2015
1 parent 746873f commit eb7d667
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Scratch JS",
"version": "0.0.17",
"version": "0.0.18",
"description": "Write and execute ES6 within DevTools!",
"devtools_page": "es6-repl.html",
"manifest_version": 2,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Scratch-JS",
"version": "0.0.17",
"version": "0.0.18",
"description": "Write ES6 (and other compile-to-JS languages) and execute it on a page from inside DevTools.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion panel/scripts/repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ Repl.prototype.addEventListeners = function() {
icon.innerHTML = "!";
icon.className = "line-error-icon";

var message = "<pre>(" + err.line + ":" + err.column + ") " + err.name + ": ";
var message = "<pre>(" + (err.line + 1) + ":" + err.column + ") " + err.name + ": ";
message += err.message + "\n";
message += "|" + this.editor.getLine(err.line) + "\n";
message += "|" + xCharacters(err.column, ' ') + "^";
Expand Down

0 comments on commit eb7d667

Please sign in to comment.