mirror of
https://github.com/zhigang1992/redpotion.git
synced 2026-04-29 21:05:43 +08:00
Use splats properly
* thanks @jamonholmgren
This commit is contained in:
@@ -88,6 +88,6 @@ class UIView
|
||||
end
|
||||
|
||||
def find(*args)
|
||||
rmq(self).find(args)
|
||||
rmq(self).find(*args)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -52,7 +52,7 @@ class UIViewController
|
||||
end
|
||||
|
||||
def find(*args)
|
||||
rmq(self.view).find(args)
|
||||
rmq(self.view).find(*args)
|
||||
end
|
||||
|
||||
def self.stylesheet(style_sheet_class)
|
||||
|
||||
Reference in New Issue
Block a user