Merge pull request #48 from achambers/patch-1
A tiny typo fix. It all adds up...
This commit is contained in:
commit
415f810089
1 changed files with 2 additions and 2 deletions
|
@ -31,8 +31,8 @@ module SiteSettingExtension
|
||||||
end
|
end
|
||||||
|
|
||||||
# just like a setting, except that it is available in javascript via DiscourseSession
|
# just like a setting, except that it is available in javascript via DiscourseSession
|
||||||
def client_setting(name, defualt = nil, type = nil)
|
def client_setting(name, default = nil, type = nil)
|
||||||
setting(name,defualt,type)
|
setting(name,default,type)
|
||||||
@@client_settings ||= []
|
@@client_settings ||= []
|
||||||
@@client_settings << name
|
@@client_settings << name
|
||||||
end
|
end
|
||||||
|
|
Reference in a new issue