bootstrap-saas
gemを使用して、Railsビューのフォームフィールドにポップオーバーを実装しようとしています。
<%= form_for(@user, :html => { :class => "form-horizontal" }) do |f| %>
<div class="control-group">
<%= f.label :fname, "First Name", :class => "control-label" %>
<div class="controls">
<%= f.text_field :fname, class: "input-large", rel: "popover", :"data-content"=>"Enter First Name" %>
</div>
</div>
<% end %>
私はこれで何が欠けていますか?