そのため、assets / javascriptsフォルダーに、galleryviewという画像スライドショーを実行するフォルダーがあります。このフォルダ内には、「次へ」ボタンと「前へ」ボタンの画像を保持するテーマディレクトリがあります...
アセット/javascripts/ galleryview / themes /
これを実行しているjavascriptは、これを介してこれらの画像にリンクしています。
//Determine path between current page and filmstrip images
//Scan script tags and look for path to GalleryView plugin
$('script').each(function(i){
var s = $(this);
if(s.attr('src') && s.attr('src').match(/jquery\.galleryview/)){
img_path = s.attr('src').split('jquery.galleryview')[0]+'themes/';
}
});
ただし、これをRailsアプリで使用しているので、このimg_path行をポイントする必要があります
アセット/画像/
では、私のimag_pathは今どのように見えるべきでしょうか?
img_path = ?
これがjsfiddleのjavascriptファイルコード全体です....これをコピーしてエディターに貼り付けます。興味のある領域は389行目あたりです。