Do not load typekit

Signed-off-by: Junjie Mao <junjie.mao@enight.me>
This commit is contained in:
Junjie Mao 2015-09-15 14:10:51 +08:00
parent bae680e20a
commit 3536e7e27b
2 changed files with 0 additions and 3 deletions

View File

@ -5,8 +5,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/style.css">
<script type="text/javascript" src="//use.typekit.net/tor0zlh.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body ng-controller="Ctrl">
<nav class="navbar navbar-inverse" role="navigation" style="background-color:#428BCA;border:0px;border-radius:0px;">

View File

@ -19,7 +19,6 @@ app.service('cpu', ['opcodes', 'memory', function(opcodes, memory) {
var instr = [memory.load(self.ip), memory.load(self.ip + 1)];
var opcode = instr[0] >> 4;
log('opcode: ' + opcode);
var regDest = instr[0] & 0x0F, regSource1 = instr[1] >> 4, regSource2 = instr[1] & 0x0F;
var mem = instr[1], num = instr[1];
self.ip = self.ip + 2;