閉じるボタンのツールチップなど、fancybox のツールチップを翻訳する方法はありますか?
値をデンマーク語に変更するために afterShow コールバックでこれを実行しましたが、うまくいくようです..またはそれを変更するより良い方法はありますか?
<script type="text/javascript">
$(document).ready(function() {
$("a.mapoverlay").fancybox({
width : '90%',
height : '90%',
fixed: false,
autoSize : false,
autoCenter : true,
afterLoad : function() {
loadMap();
},
afterShow : function() {
$("a.fancybox-close").attr("title", "Luk");
}
});
});
</script>
編集: このコードは正常に動作するようです。
これを書いているときに構文エラーが発生しました。SyntaxError:予期しないトークン }
ここでこの投稿を見ました: https://github.com/fancyapps/fancyBox/issues/7
<script type="text/javascript">
$(document).ready(function() {
$("a.mapoverlay").fancybox({
width : '90%',
height : '90%',
fixed: false,
autoSize : false,
autoCenter : true,
afterLoad : function() {
loadMap();
},
tpl: {
closeBtn: '<div title="Test" class="fancybox-item fancybox-close"></div>'
}
});
});
</script>