提供: defeatedcrow mod wiki
移動先: 案内検索
(ページの作成:「ここにあるすべてのJavaScriptは、モダン外装を使用している利用者に対して読み込まれます: <script type="text/javascript">jQuery(fun...」)
 
 
4行目: 4行目:
 
     jQuery("a").click(function(e) {         
 
     jQuery("a").click(function(e) {         
 
         var ahref = jQuery(this).attr('href');
 
         var ahref = jQuery(this).attr('href');
         if (ahref.indexOf("defeatedcrow.jp/modwiki/") != -1 || ahref.indexOf("http") == -1 ) {
+
         if (ahref.indexOf("defeatedcrow.jp/modwiki/") != -1 || ahref.indexOf("https") == -1 ) {
 
             ga('send', 'event', 'Inbound', 'Click', ahref);}  
 
             ga('send', 'event', 'Inbound', 'Click', ahref);}  
 
         else {  
 
         else {  

2018年7月23日 (月) 13:00時点における最新版

/* ここにあるすべてのJavaScriptは、モダン外装を使用している利用者に対して読み込まれます */

<script type="text/javascript">jQuery(function() {  
    jQuery("a").click(function(e) {        
        var ahref = jQuery(this).attr('href');
        if (ahref.indexOf("defeatedcrow.jp/modwiki/") != -1 || ahref.indexOf("https") == -1 ) {
            ga('send', 'event', 'Inbound', 'Click', ahref);} 
        else { 
            ga('send', 'event', 'Outbound', 'Click', ahref);}
        });
    });
</script>