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

Unified Diff: chrome/common/extensions/docs/examples/extensions/app_launcher/popup.html

Issue 8309001: Adding `content_security_policy` to a few sample extensions. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: License and whitespace. Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/examples/extensions/app_launcher/popup.html
diff --git a/chrome/common/extensions/docs/examples/extensions/app_launcher/popup.html b/chrome/common/extensions/docs/examples/extensions/app_launcher/popup.html
index ca1408042d242a1a1fa03e08676edce8eb7919cd..77a9fb6cd0558eaba2fc8e03441125d06ecbef35 100644
--- a/chrome/common/extensions/docs/examples/extensions/app_launcher/popup.html
+++ b/chrome/common/extensions/docs/examples/extensions/app_launcher/popup.html
@@ -9,19 +9,18 @@
<link rel="stylesheet" type="text/css" href="popup.css">
<script src="popup.js"></script>
</head>
-<body onload="onLoad()">
+<body>
<div id="spacer_dummy"></div>
<div id="outer">
-<div id="appstore_link" style="display:none">
-<p>No apps installed.</p><p>
-<a href='javascript:chrome.tabs.create({"url":"https://chrome.google.com/webstore", "selected":true});window.close();'>Go get some</a></p>
+<div id="appstore_link">
+ <p>No apps installed.</p><p>
+ <button>Go get some</button></p>
</div>
<div id="search_container">
-<input id="search" type="text" placeholder="type to search"
- oninput="onSearchInput()" spellcheck="false">
+ <input id="search" type="text" placeholder="type to search" spellcheck="false">
</div>
<div id="apps"></div>

Powered by Google App Engine
This is Rietveld 408576698