Skip to content

Commit

Permalink
minor change to fix pure
Browse files Browse the repository at this point in the history
  • Loading branch information
eternaldensity committed Jan 28, 2014
1 parent 7f5b2b4 commit 661db51
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 0 additions & 2 deletions castle.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
*
* This section contains the non-Molpy functions.
*************************************************************/
function g(id) {return document.getElementById(id);}

function addCSSRule(sheet, selector, rules, index) {
if(sheet.insertRule) {
sheet.insertRule(selector + '{' + rules + '}', index);
Expand Down
5 changes: 3 additions & 2 deletions pure.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

ga('create', 'UA-45954809-1', 'chirpingmustard.com');
ga('send', 'pageview');
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-45954809-1']);
_gaq.push(['_trackPageview']);

</script>
<script type="text/javascript">window.onload=function()
Expand Down
1 change: 1 addition & 0 deletions redundancy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use strict';
function g(id) {return document.getElementById(id);}
var postfixes=[
{limit:1e210,divisor:1e210,postfix:['Q',' Quita']},
{limit:1e42,divisor:1e42,postfix:['W',' Wololo']},
Expand Down

0 comments on commit 661db51

Please sign in to comment.