Skip to content

Commit

Permalink
Added missing semicolons in the source
Browse files Browse the repository at this point in the history
  • Loading branch information
kimjoar committed Oct 17, 2011
1 parent db1cdef commit ecadec3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/remark.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
var addElementToHead = function (element) {
var head = document.getElementsByTagName('head')[0];
head.insertBefore(element, head.firstChild);
}
};

var createSlides = function () {
var source = document.getElementById('source').innerHTML
Expand Down Expand Up @@ -88,7 +88,7 @@
else {
scale = width / (sizeFactor * widthFactor);
}

slideshow.style['-webkit-transform'] = 'scale(' + scale + ')';
slideshow.style.MozTransform = 'scale(' + scale + ')';
slideshow.style.left = (width - slideshowWidth * scale) / 2 + 'px';
Expand All @@ -100,7 +100,7 @@

window.onresize = resize;
window.onresize();
}
};

var navigate = function () {
slideNo = parseInt((location.hash || '').substr(1), 10) || 1;
Expand Down

0 comments on commit ecadec3

Please sign in to comment.