사용자:CrMT/common.js: 두 판 사이의 차이

잔글편집 요약 없음
잔글편집 요약 없음
9번째 줄: 9번째 줄:
   });
   });


 
$(function () {
$(document).ready(function() {
    if ($(window).width() > 596) {
var $viewportWidth, $title, $link = null;
        $('head').append('<title>attaching stylesheet in specific viewport-sizes</title>' +
viewportWidth = $(window).width();
             '<link href="bigViewport.css" rel="stylesheet" type="text/css" />');
if(viewportWidth > 596){
    }
            $title = document.createElement("<title>?????????????????????<\\/title>");
});
             $link = document.createElement("sdsdsddsd");
            $("head").appendChild($title);
            $("head").appendChild($link);
        }
}

2016년 12월 20일 (화) 13:29 판

  MathJax.Hub.Config({
    extensions: ["tex2jax.js"],
    jax: ["input/TeX","output/HTML-CSS"],
    "HTML-CSS": {
      styles: {".MathJax_Preview": {visibility: "hidden"}}
    },
    TeX: {extensions: ["AMSmath.js","AMSsymbols.js"], equationNumbers: { autoNumber: "AMS" } },
	commonHTML: {scale: 90}
  });

$(function () {
    if ($(window).width() > 596) {
        $('head').append('<title>attaching stylesheet in specific viewport-sizes</title>' +
            '<link href="bigViewport.css" rel="stylesheet" type="text/css" />');
    }
});