Skip to content

Commit

Permalink
"use strict"
Browse files Browse the repository at this point in the history
  • Loading branch information
roblarsen committed Jun 21, 2011
1 parent f86bae7 commit 3ccc18f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions js/script.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"use strict";
/**
* Author: Isobar North America
*/
ISOBAR = {
var ISOBAR = {
common : {
init: function(){
this.toc();
Expand Down Expand Up @@ -56,7 +57,7 @@ ISOBAR = {
}
};

UTIL = {
var UTIL = {
fire : function(func,funcname, args){
var namespace = ISOBAR; // indicate your obj literal namespace here
funcname = (funcname === undefined) ? 'init' : funcname;
Expand Down Expand Up @@ -92,7 +93,7 @@ $(document).ready(UTIL.loadEvents);
dots = [],
numDots = 1,
time = 0,
body = document.body;
body = document.body,
img = new Image();

// Constructor that defines new Dots
Expand Down

0 comments on commit 3ccc18f

Please sign in to comment.