mirror of
https://github.com/golang/go
synced 2024-11-05 21:36:12 -07:00
9e811683f1
No JavaScript in HTML anymore. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/6619066
10 lines
255 B
JavaScript
10 lines
255 B
JavaScript
chrome.omnibox.onInputEntered.addListener(function(t) {
|
|
var url = urlForInput(t);
|
|
if (url) {
|
|
chrome.tabs.getSelected(null, function(tab) {
|
|
if (!tab) return;
|
|
chrome.tabs.update(tab.id, { "url": url, "selected": true });
|
|
});
|
|
}
|
|
});
|