1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 06:07:59 +01:00

Add missing semicolons.

...let the good times roll.
This commit is contained in:
Doug Kearns
2010-09-22 23:44:04 +10:00
parent 39cbb91490
commit cce6bb653e
16 changed files with 39 additions and 39 deletions

View File

@@ -1071,7 +1071,7 @@ const Buffer = Module("buffer", {
else if (increment == "pages")
increment = elem.clientHeight - fontSize;
else
throw Error()
throw Error();
elem.scrollTop += number * increment;
},
@@ -1083,7 +1083,7 @@ const Buffer = Module("buffer", {
else if (increment == "pages")
increment = elem.clientWidth - fontSize;
else
throw Error()
throw Error();
elem.scrollLeft += number * increment;
},