ページ上のwbotelhos/raty.jsプラグインにカーソルを合わせると、星が点滅するときにサーバーからstar-on.pngとstar-off.pngが繰り返しフェッチされます。画像のローカルクライアントキャッシュを使用する方法はありますか?Chromeでテストしています。次のBackbone.Viewレンダリングコードを使用して、プラグインをItem要素に挿入します。
render: function(manage) {
this.collection.each(function(user) {
this.insertView("ul", new User.Views.Item({
model: user
}));
}, this);
return manage(this).render().then(function(el) {
// Only re-focus if invalid
this.$("input.invalid").focus();
this.$(".raty-test").raty();
});
}