| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「MediaWiki:Common.js」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
2行目: 2行目:
 
$(function () {
 
$(function () {
 
   console.log("DOCUMENT READY START!");
 
   console.log("DOCUMENT READY START!");
 +
  // Code Prettify
 +
  $("pre").addClass("prettyprint linenums");
 +
  //prettyPrint();
 +
 
   // Template:Amazon に 画面遷移を付与
 
   // Template:Amazon に 画面遷移を付与
 
   $(".amazonlink").each(function(){
 
   $(".amazonlink").each(function(){
11行目: 15行目:
 
       $(this).css('cursor','pointer');
 
       $(this).css('cursor','pointer');
 
   });
 
   });
 
  // Code Prettify
 
  $("pre").addClass("prettyprint linenums");
 
  //prettyPrint();
 
 
 
   console.log("DOCUMENT READY END!");
 
   console.log("DOCUMENT READY END!");
 
}());
 
}());

2020年6月12日 (金) 02:31時点における版

/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
$(function () {
  console.log("DOCUMENT READY START!");
  // Code Prettify
  $("pre").addClass("prettyprint linenums");
  //prettyPrint();

  // Template:Amazon に 画面遷移を付与
  $(".amazonlink").each(function(){
       var asin = $(this).find("img").attr("alt");
       asin = asin.slice(0, asin.indexOf('.'));
       $(this).click(function() {       
         window.location.href = "https://www.amazon.co.jp/exec/obidos/ASIN/" + asin + "/typea09-22";
       })
       $(this).css('cursor','pointer');
  });
  console.log("DOCUMENT READY END!");
}());