Merge pull request #74 from huacnlee/fix/view-helper-url-path-bug
Fix view helper url path bug
This commit is contained in:
commit
4e327b5c0a
|
@ -1,3 +1,9 @@
|
|||
2.5.0
|
||||
-------
|
||||
|
||||
- Support click captcha image to refresh new one by default.
|
||||
- Use simple tag helper generate captcha img html, for avoid asset_host (#73).
|
||||
|
||||
2.4.0
|
||||
-------
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
rucaptcha (2.4.0)
|
||||
rucaptcha (2.5.0)
|
||||
railties (>= 3.2)
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module RuCaptcha
|
||||
VERSION = '2.4.0'
|
||||
VERSION = '2.5.0'
|
||||
end
|
||||
|
|
|
@ -13,7 +13,9 @@ module RuCaptcha
|
|||
|
||||
def rucaptcha_image_tag(opts = {})
|
||||
opts[:class] = opts[:class] || 'rucaptcha-image'
|
||||
image_tag(ru_captcha.root_path, opts)
|
||||
opts[:src] = ru_captcha.root_path
|
||||
opts[:onclick] = "this.src = '#{ru_captcha.root_path}?t=' + Date.now();"
|
||||
tag(:img, opts)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue