Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(344)

Side by Side Diff: chrome/common/extensions/docs/js/bootstrap.js

Issue 159607: Extension docs build script, gyp target and PRESUBMIT.PY check (Closed)
Patch Set: remove build step on mac Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 window.onload = function() {
2 // Regenerate page if we are passed the "?regenerate" search param
3 // or if the user-agent is chrome AND the document is being served
4 // from the file:/// scheme.
5 if (window.location.search == "?regenerate" ||
6 navigator.userAgent.indexOf("Chrome") > -1) {
7 // Hide body content initially to minimize flashing.
8 document.getElementsByTagName("body")[0].className = "hidden";
9 window.renderPage();
10 }
11 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/js/api_page_generator.js ('k') | chrome/common/extensions/docs/overview.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698