Add catch-all compatibility check, defaults to false
This commit is contained in:
parent
ce5ffed6a3
commit
8c26dea72d
|
@ -30,5 +30,10 @@ module ChiliProject
|
||||||
def self.using_jquery?
|
def self.using_jquery?
|
||||||
false
|
false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Catch-all to be overwritten be future compatibility checks.
|
||||||
|
def self.method_missing(method, *args)
|
||||||
|
method.to_s.ends_with?('?') ? false : super
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue