aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Nilsson <[email protected]>2011-11-26 10:44:54 +0100
committerJohan Nilsson <[email protected]>2011-11-26 10:44:54 +0100
commit94486e33cd16fcced0d232cc4a3133171f233ce2 (patch)
tree6ad0e2de1048d9c95ae2635d7169be72c3b18ce0
parent23ed1e3bbd33bca75e4888fde4f2c37e643ed5e4 (diff)
Fix link to css and local jquery.
-rw-r--r--widget.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/widget.js b/widget.js
index f412e3d..4d6a8f0 100644
--- a/widget.js
+++ b/widget.js
@@ -11,7 +11,7 @@
// Localize jQuery variable
var jQuery;
var remoteJquery = 'http://code.jquery.com/jquery-1.7.min.js';
- var localJquery = 'http://johannilsson.github.com/lastcommit/jquery-1.7.min.js';
+ var localJquery = 'http://johannilsson.com/lastcommit/jquery-1.7.min.js';
/**
* Load jQuery if not present
@@ -47,7 +47,7 @@
var cssLink = $('<link>', {
rel: 'stylesheet',
type: 'text/css',
- href: 'http://johannilsson.github.com/lastcommit/widget.css'
+ href: 'http://johannilsson.com/lastcommit/widget.css'
});
cssLink.appendTo('head');