Use splats properly

* thanks @jamonholmgren
This commit is contained in:
David Larrabee
2015-04-10 13:54:05 -04:00
parent 47db5056c8
commit f13e94dfc2
4 changed files with 13 additions and 2 deletions

View File

@@ -88,6 +88,6 @@ class UIView
end
def find(*args)
rmq(self).find(args)
rmq(self).find(*args)
end
end

View File

@@ -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)