diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2011-08-29 09:59:55 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2011-08-29 09:59:55 +0100 |
commit | 8a0210db99a146a2700a5db0335618423ea756a0 (patch) | |
tree | f77ac603f2a2168c75b67c43f555f1175fb0d365 | |
parent | 81def292991115cfb26aaeeb7e57b222073f2014 (diff) |
Fix invalid HTML, thus getting admin_public_body_controller tests to pass
-rw-r--r-- | app/views/admin_public_body/edit.rhtml | 2 | ||||
-rw-r--r-- | app/views/admin_public_body/new.rhtml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin_public_body/edit.rhtml b/app/views/admin_public_body/edit.rhtml index 1883eb083..b91f15a2e 100644 --- a/app/views/admin_public_body/edit.rhtml +++ b/app/views/admin_public_body/edit.rhtml @@ -1,6 +1,6 @@ <h1><%=@title%></h1> -<script> +<script type="text/javascript"> $(function() { $("#div-locales").tabs(); }); diff --git a/app/views/admin_public_body/new.rhtml b/app/views/admin_public_body/new.rhtml index 11186ee47..b859fdf6a 100644 --- a/app/views/admin_public_body/new.rhtml +++ b/app/views/admin_public_body/new.rhtml @@ -2,7 +2,7 @@ <h1><%=@title%></h1> -<script> +<script type="text/javascript"> $(function() { $("#div-locales").tabs(); }); |