mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-05 19:02:24 +00:00
10 lines
318 B
JavaScript
10 lines
318 B
JavaScript
var { classes: Cc, interfaces: Ci, utils: Cu } = Components
|
|
|
|
/* set new tab page */
|
|
try {
|
|
Cu.import("resource:///modules/AboutNewTab.jsm")
|
|
const newTabURL = "/home/leon/.config/my_startpage/index.html"
|
|
AboutNewTab.newTabURL = newTabURL
|
|
} catch (e) {
|
|
Cu.reportError(e)
|
|
} // report errors in the Browser Console
|