diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-04-10 17:22:20 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-04-28 09:07:24 +0100 |
commit | 74289547f01e78a614d98aeaf8ed21589b3bc76b (patch) | |
tree | 01fffa6788e018247fb4a21ee9760c2db7fc684f | |
parent | 9da331bfe71328d68133ff04a73505582cf627ab (diff) |
Add closing tags for iframes.
-rw-r--r-- | app/views/widgets/new.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/widgets/new.html.erb b/app/views/widgets/new.html.erb index 072645d09..c706155a5 100644 --- a/app/views/widgets/new.html.erb +++ b/app/views/widgets/new.html.erb @@ -4,12 +4,12 @@ To add a widget for <b><%= @info_request.title %></b>, copy and paste the following code to your web page: <textarea autofocus readonly rows='4' cols='60' id='widgetbox'> -<iframe src='<%= request_widget_url(@info_request) %>' width='320' height='215' frameborder='0' marginwidth='0' marginheight='0'> +<iframe src='<%= request_widget_url(@info_request) %>' width='320' height='215' frameborder='0' marginwidth='0' marginheight='0'></iframe> </textarea> </p> <p> The widget will look like this: <br> -<iframe src='<%= request_widget_url(@info_request) %>' width='320' height='215' frameborder='0' marginwidth='0' marginheight='0'> +<iframe src='<%= request_widget_url(@info_request) %>' width='320' height='215' frameborder='0' marginwidth='0' marginheight='0'></iframe> </p> |