Merge pull request #55 from hideheader/new-style-links
Create new styles with `url-prefix()`
This commit is contained in:
commit
56ad7e869b
2
edit.js
2
edit.js
|
@ -162,6 +162,8 @@ function init() {
|
|||
section.domains = [params.domain];
|
||||
} else if (params.url) {
|
||||
section.urls = [params.url];
|
||||
} else if (params["url-prefix"]) {
|
||||
section.urlPrefixes = [params["url-prefix"]];
|
||||
}
|
||||
addSection(section);
|
||||
// default to enabled
|
||||
|
|
4
popup.js
4
popup.js
|
@ -25,13 +25,13 @@ chrome.tabs.getSelected(null, function(tab) {
|
|||
|
||||
// For this URL
|
||||
var urlLink = writeStyleTemplate.cloneNode(true);
|
||||
urlLink.href = "edit.html?url=" + encodeURIComponent(tab.url);
|
||||
urlLink.href = "edit.html?url-prefix=" + encodeURIComponent(tab.url);
|
||||
urlLink.appendChild(document.createTextNode( // switchable; default="this URL"
|
||||
prefs.getPref("popup.breadcrumbs.usePath")
|
||||
? t("writeStyleForURL").replace(/ /g, "\u00a0")
|
||||
: /\/\/[^/]+\/(.*)/.exec(tab.url)[1]
|
||||
));
|
||||
urlLink.title = "url(\"$\")".replace("$", tab.url);
|
||||
urlLink.title = "url-prefix(\"$\")".replace("$", tab.url);
|
||||
writeStyleLinks.push(urlLink);
|
||||
document.querySelector("#write-style").appendChild(urlLink)
|
||||
if (prefs.getPref("popup.breadcrumbs")) { // switchable; default=enabled
|
||||
|
|
Loading…
Reference in New Issue
Block a user