This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
|
class OrbitWidgetController< OrbitFrontendComponentController
|
|
before_filter :get_wiget_options
|
|
|
|
def get_wiget_options
|
|
@wiget_options = {}
|
|
if params[:widget_options]
|
|
@wiget_options = (eval('{'+ params[:widget_options] +'}') rescue {})
|
|
end
|
|
end
|
|
end |