Skip to content

Commit

Permalink
Makes changes to fix up issue of wrong dojo folder
Browse files Browse the repository at this point in the history
  • Loading branch information
apsdehal committed Aug 15, 2014
1 parent fa388d0 commit 52ac785
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bookmarklet_build/build_bookmarklet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ver=`head -1 ../VERSION.txt`
# - dojo/ folder with the compiled bookmarklet
# - css/ folder
## WITHOUT trailing slash (/)
bmpath=https://rawgithub.com/apsdehal/WAFBookmarklet/master
bmpath=https://rawgithub.com/apsdehal/WAFBookmarklet/master/bookmarklet_build

###########################################
### Dont touch anything below this line ###
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 = 'https://rawgithub.com/apsdehal/WAFBookmarklet/master/css/pundit.css';
l.href = 'https://rawgithub.com/apsdehal/WAFBookmarklet/master/bookmarklet_build/css/pundit.css';
l.type = 'text/css';
l.media = 'screen';
l.charset = 'utf-8';
Expand Down Expand Up @@ -192,11 +192,11 @@
djConfig = {
afterOnLoad: true,
useXDomain: true,
baseUrl: "https://rawgithub.com/apsdehal/WAFBookmarklet/master/dojo/",
baseUrl: "https://rawgithub.com/apsdehal/WAFBookmarklet/master/bookmarklet_build/dojo/",
require: ["dojo.Bookmarklet"]
};
d.type = 'text/javascript';
d.src = 'https://rawgithub.com/apsdehal/WAFBookmarklet/master/dojo/dojo.xd.js';
d.src = 'https://rawgithub.com/apsdehal/WAFBookmarklet/master/bookmarklet_build/dojo/dojo.xd.js';
h.appendChild(d);

})();

0 comments on commit 52ac785

Please sign in to comment.