Skip to content

Commit

Permalink
source-editor.js: add missing semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR authored and atermenji committed Oct 31, 2013
1 parent 291835b commit 4bfddd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/source-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function loadImage(type, content) {
document.body.appendChild(img);
}

window.onload = function() {
window.onload = function () {
var name = new String(SourceEditor.getName());
var extension = getExtension(name);
if ("png" == extension || "gif" == extension) {
Expand Down Expand Up @@ -171,4 +171,4 @@ window.onload = function() {
updateWidth();

editor.refresh();
}
};

0 comments on commit 4bfddd1

Please sign in to comment.