我试图让我的拖放功能在手机上运行。所以我试图使用jquery touch punch,但它似乎没有启用拖放手机。
这是我的代码。我把jquery.ui.touch-punch.min.js放在/ app / assets / javascripts /文件夹中。
=render :layout => 'shared/form_layout' do
.row-fluid
.col-xs-12.text-center#new-image
%h1 Edit Collection
= form_for @collection, :html => { :method => :put, :multipart => true } do |f|
.row-fluid
%label{for: "image"} Drag to Reorder:
%script{:src => "http://code.jquery.com/jquery-1.7.2.min.js"}
%script{:src => "http://code.jquery.com/ui/1.8.21/jquery-ui.min.js"}
%script{:src => "/app/assets/javascripts/jquery.ui.touch-punch.min.js"}
%ul.list-inline.form-group.edit-grid.clearfix#collectiondrag{"data-update-url" => sort_collections_url}
- @images.each do |image|
%li{class: "image", id: "image_#{image.id}"}
.edit-item{:style => "background-image: url(#{image.photo.url})"}
%hr.m-y-20
.text-center
= f.submit "Save Changes", class: "button btn btn-primary w-100", id: "sort_collection"
答案 0 :(得分:2)
以下是我使Touch Punch工作的步骤:
/app/assets/javascripts/
会这样做,但我更喜欢在/vendor/assets/javascripts/
中添加第三方javascripts。application.js
文件中,包含所有jquery和jquery-ui后的文件。这应该可以让你开始运行!