Build: Add missing semicolon

This commit is contained in:
Scott González 2017-02-06 10:20:50 -05:00
parent 4fa0267edc
commit 162377fba2

View File

@ -93,7 +93,7 @@ function parseUrl() {
current = parts[ i ].split( "=" );
data[ current[ 0 ] ] = current[ 1 ];
} else {
data[ parts[ i ] ] = true
data[ parts[ i ] ] = true;
}
}