mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05:00
Fix JSHINT
This commit is contained in:
parent
e2845f7f16
commit
13fa473c6d
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ replaceBBCodeParamsRaw("email", function(param, contents) {
|
|||
});
|
||||
|
||||
replaceBBCodeParams("size", function(param, contents) {
|
||||
return ['span', {'class': "bbcode-size-" + (parseInt(param) || 1)}].concat(contents);
|
||||
return ['span', {'class': "bbcode-size-" + (parseInt(param, 10) || 1)}].concat(contents);
|
||||
});
|
||||
|
||||
// Handles `[code] ... [/code]` blocks
|
||||
|
|
Loading…
Reference in a new issue