さまざまな JS アラートを一列に表示したい。以下は私が欲しいものの例です:
def exec
render :js => "alert('Exec function has started');" and return
if was_executed_successful?
render :js => "alert('Congratz! You're the champion');" and return
else
render :js => "alert('Loser!');" and return
end
end
上記のコードの問題は、最初のアラートしか表示されないことです。
それらをすべて表示するにはどうすればよいですか?