mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
Components.utils.import("resource://gre/modules/Services.jsm");
|
|
|
|
function enable() {
|
|
Services.prefs.setIntPref("bootstraptest.version", 1);
|
|
}
|
|
|
|
function disable() {
|
|
Services.prefs.setIntPref("bootstraptest.version", 0);
|
|
}
|