2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-14 18:42:30 +03:00

add missing semicolon

This commit is contained in:
Chris Rebert
2014-01-14 14:25:25 -08:00
parent 2a6b6f8537
commit 8fb75ee9e7
+1 -1
View File
@@ -41,7 +41,7 @@ function Section(heading, customizable) {
Section.prototype.addSubSection = function (subsection) { Section.prototype.addSubSection = function (subsection) {
this.subsections.push(subsection); this.subsections.push(subsection);
} };
function SubSection(heading) { function SubSection(heading) {
this.heading = heading.trim(); this.heading = heading.trim();