Skip to content

Commit

Permalink
remove unnecessary script
Browse files Browse the repository at this point in the history
  • Loading branch information
kmuramatsu committed Jun 26, 2012
1 parent 198e391 commit e97a131
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 35 deletions.
31 changes: 0 additions & 31 deletions Server/moriyoshi/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,6 @@
<link rel="apple-touch-icon-precomposed" href="./nameko.png"/>
</head>
<body onLoad="onLoad()">
<!-- PF-X.NET tag start -->
<script type="text/javascript"><!--
window.google_analytics_uacct = "UA-8167794-2";
// -->
</script>
<!-- google_ad_section_start -->
<!-- PF-X.NET tag end-->


<div id="main"></div>
Expand All @@ -26,29 +19,5 @@
</span>


<!-- PF-X.NET tag start-->
<!-- google_ad_section_end -->

<script type="text/javascript">
<!--
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
//-->
</script>
<script type="text/javascript">
<!--
try {
var pageTracker = _gat._getTracker("UA-13253168-1");
pageTracker._setDomainName("none");
pageTracker._setAllowLinker(true);
pageTracker._trackPageview();
} catch(err) {}
//-->
</script>


<!-- PF-X.NET tag end-->


</body>
</html>
5 changes: 1 addition & 4 deletions Server/moriyoshi/nameko.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ var isiPhone = !!navigator.userAgent.match(/[iPhone|iPad|iPod].*Mobile/);
* Const
* --------------------------------------------------
*/
var MESSAGE = "<div id='message'>無限もりよし</div><br><div id='namekoNum'>0本</div>";

var ROW = 30;
var COL = 30;
Expand Down Expand Up @@ -75,8 +74,6 @@ function onLoad() {
attr("id", "txt").
css({"fontSize":10, "textAlign":"center"}).
appendTo("#main");
$("#txt").html(MESSAGE);
$("#namekoNum").html(namekoNum + "本");
createObj();

}
Expand Down Expand Up @@ -131,7 +128,7 @@ function onResize() {
*/
function createObj() {
shiftX = Math.round((document.body.clientWidth - COL*OBJ_DISTANCE)/2);
shiftY = SIZE_Y*1.2;
shiftY = 0;
arObj = new Array();
for (var i=0; i<COL; i++) {
arObj[i] = new Array();
Expand Down

0 comments on commit e97a131

Please sign in to comment.