/usr/share/xul-ext/personasplus/content/preferences.js is in xul-ext-personasplus 1.7.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | const Cc = Components.classes;
const Ci = Components.interfaces;
const Cr = Components.results;
const Cu = Components.utils;
let PersonasPreferences = {
onSelectCustom: function(event) {
window.close();
opener.window.openUILinkIn("chrome://personas/content/customPersonaEditor.xul", "tab");
},
onAccept: function(event) {
}
};
|