2013-03-09 78 views
0

如何選擇一個搜索提交按鈕,使用deface對其應用類?Spree污損,提交按鈕添加類

嘗試這樣做:

set_attributes 'form.input[type="submit"]' 
attributes :class => 'saerchbox_submit' 

機器人似乎並沒有工作。我錯過了什麼嗎?

回答

0

你錯過Deface ::覆蓋區塊上的一些元素。

:set_attributes => 'input[type="submit"]', 
:attributes => {:class => 'searchbox_submit'}) 

這應該可以正常工作。

我也推薦你去看看Deface README,它比Spree更好用於Deface的使用,並且有很多例子。