Fix syntax error in shared/_modal.haml

Also can't use quoted keys there yet because of Ruby 2.1
This commit is contained in:
Jonne Haß 2015-06-03 17:16:01 +02:00
parent 5589dac108
commit e3bff1f20b

View file

@ -1,15 +1,15 @@
.modal.fade { id: id,
tabindex: "-1",
role: "dialog",
"aria-labelledby": "#{id}Label",
"aria-hidden": "true",
"href": path }
.modal.fade{"id" => id,
"tabindex" => "-1",
"role" => "dialog",
"aria-labelledby" => "#{id}Label",
"aria-hidden" => "true",
"href" => path}
.modal-dialog
.modal-content
.modal-header
%button.close{ type: "button", "data-dismiss": "modal", "aria-hidden": "true" }
%button.close{"type" => "button", "data-dismiss" => "modal", "aria-hidden" => "true"}
×
%h3.modal-title{ id: "#{id}Label"}
%h3.modal-title{id: "#{id}Label"}
= title
.modal-body
= image_tag("ajax-loader2.gif", id: "modalWaiter", class: "img-responsive center-block")