diff options
author | Johan Nilsson <[email protected]> | 2011-11-26 10:44:54 +0100 |
---|---|---|
committer | Johan Nilsson <[email protected]> | 2011-11-26 10:44:54 +0100 |
commit | 94486e33cd16fcced0d232cc4a3133171f233ce2 (patch) | |
tree | 6ad0e2de1048d9c95ae2635d7169be72c3b18ce0 | |
parent | 23ed1e3bbd33bca75e4888fde4f2c37e643ed5e4 (diff) |
Fix link to css and local jquery.
-rw-r--r-- | widget.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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'); |