Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: ext/background.js

Issue 29340737: Issue 3968 - Add "new-" prefix to option file names (Closed)
Patch Set: Updated sentence about firstRun parameters for consistency. Created April 22, 2016, 12:23 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « README.md ('k') | locale/en-US/new-options.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ext/background.js
diff --git a/ext/background.js b/ext/background.js
index 8f864da235a57220ccbc231a047bb2eb3d941876..88665eab3e936b3225131b706751a01eee9014d8 100644
--- a/ext/background.js
+++ b/ext/background.js
@@ -78,8 +78,8 @@
global.ext.showOptions = function(callback)
{
- if (top.location.href.indexOf("options.html") == -1)
- window.open("options.html", "_blank");
+ if (top.location.href.indexOf("new-options.html") == -1)
+ window.open("new-options.html", "_blank");
if (callback)
callback();
« no previous file with comments | « README.md ('k') | locale/en-US/new-options.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld