Ajaxify the country selection on the terms page

This commit is contained in:
Tom Hughes 2010-04-27 10:01:40 +01:00
parent 972278a223
commit adb0883d17
4 changed files with 58 additions and 43 deletions

View file

@ -25,7 +25,11 @@ class UserController < ApplicationController
@legale = params[:legale] || OSM.IPToCountry(request.remote_ip) || APP_CONFIG['default_legale']
@text = OSM.legal_text_for_country(@legale)
if @user.invalid?
if request.xhr?
render :update do |page|
page.replace_html "contributorTerms", :partial => "terms"
end
elsif @user.invalid?
render :action => 'new'
end
end