Skip to content

Commit

Permalink
Modifies again
Browse files Browse the repository at this point in the history
  • Loading branch information
apsdehal committed Aug 12, 2014
1 parent fd43d26 commit bca30f0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/bookmarklet.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>Wikidata Web Annotator - Bookmarklet</title>
<!-- Get Pundit + Dojo + conf, Init! -->
<link rel="stylesheet" href="../css/pundit.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" type="text/css" media="screen" title="no title" charset="utf-8">

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
Expand All @@ -31,7 +31,7 @@
var h = document.getElementsByTagName('head')[0],
d = document.createElement('script');
d.type = 'text/javascript';
d.src = 'http://raw.githubusercontent.com/apsdehal/WAFBookmarklet/master/src/InitBookmarklet.js?'+Math.random()*4;
d.src = 'https://rawgithub.com/apsdehal/WAFBookmarklet/master/src/InitBookmarklet.js?'+Math.random()*4;
d.async = false;
h.appendChild(d);
})()">
Expand Down
2 changes: 1 addition & 1 deletion examples/bookmarklet.html-template
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>Wikidata Web Annotator - Bookmarklet</title>
<!-- Get Pundit + Dojo + conf, Init! -->
<link rel="stylesheet" href="../css/pundit.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" type="text/css" media="screen" title="no title" charset="utf-8">

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
Expand Down
6 changes: 3 additions & 3 deletions src/InitBookmarklet.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
l = document.createElement('link');

l.rel = 'stylesheet';
l.href = 'http://raw.githubusercontent.com/apsdehal/WAFBookmarklet/master/css/pundit.css';
l.href = 'https://rawgithub.com/apsdehal/WAFBookmarklet/master/css/pundit.css';
l.type = 'text/css';
l.media = 'screen';
l.charset = 'utf-8';
Expand All @@ -47,11 +47,11 @@
djConfig = {
afterOnLoad: true,
useXDomain: true,
baseUrl: "http://raw.githubusercontent.com/apsdehal/WAFBookmarklet/master/dojo/",
baseUrl: "https://rawgithub.com/apsdehal/WAFBookmarklet/master/dojo/",
require: ["dojo.Bookmarklet"]
};
d.type = 'text/javascript';
d.src = 'http://raw.githubusercontent.com/apsdehal/WAFBookmarklet/master/dojo/dojo.xd.js';
d.src = 'https://rawgithub.com/apsdehal/WAFBookmarklet/master/dojo/dojo.xd.js';
h.appendChild(d);

})();

0 comments on commit bca30f0

Please sign in to comment.