From 8d1f1c87b390deaa794a385293b15b45a9bf25e2 Mon Sep 17 00:00:00 2001 From: Gabriel Hernandez Date: Thu, 14 Jul 2011 09:32:32 -0700 Subject: [PATCH] moved function out. --- index.js | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/index.js b/index.js index 54618b9..2cd3a68 100755 --- a/index.js +++ b/index.js @@ -1,10 +1,6 @@ /** * @author Gabriel */ -if ( typeof $ == "undefined" ) { - - $(function(){ - $('body').append("

jQuery Initialized

"); - }); - -} \ No newline at end of file +$(function(){ + $('body').append("

jQuery Initialized

"); +}); \ No newline at end of file