Changeset 15082
- Timestamp:
- 03/08/10 23:21:57 (2 years ago)
- Location:
- trunk
- Files:
-
- 8 added
- 2 edited
-
Xul_Core/content/scenariCore/desks/prefDesk (added)
-
Xul_Core/content/scenariCore/desks/prefDesk/img (added)
-
Xul_Core/content/scenariCore/desks/prefDesk/prefDesk.css (added)
-
Xul_Core/content/scenariCore/desks/prefDesk/prefDesk.js (added)
-
Xul_Core/content/scenariCore/desks/prefDesk/prefDesk.xul (added)
-
Xul_Core/modules/scenariCore/defaultActions.jsm (modified) (1 diff)
-
Xul_XedLib/content/scenariXedLib/preferences (added)
-
Xul_XedLib/content/scenariXedLib/preferences/pref.xul (added)
-
Xul_XedLib/content/scenariXedLib/preferences/prefDesk.extPoints.js (added)
-
Xul_XedLib/scenariXedLib.manifest (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Xul_Core/modules/scenariCore/defaultActions.jsm
r14870 r15082 143 143 var actionShowPreferences = new actions.Action("actionShowPreferences").setGroup("pref").setLabel("Préférences..."); 144 144 actionShowPreferences.isVisible = function(pContext){ 145 return pContext.window.extPoints.readPref("scenariCore.preferences.url", "chrome://scenariC ms/content/preferences/preferences.xul") ? true : false;145 return pContext.window.extPoints.readPref("scenariCore.preferences.url", "chrome://scenariCore/content/desks/prefDesk/prefDesk.xul") ? true : false; 146 146 } 147 147 actionShowPreferences.execute = function(pEvent, pContext){ 148 var vUrlPrefs = pContext.window.extPoints.readPref("scenariCore.preferences.url", "chrome://scenariC ms/content/preferences/preferences.xul");148 var vUrlPrefs = pContext.window.extPoints.readPref("scenariCore.preferences.url", "chrome://scenariCore/content/desks/prefDesk/prefDesk.xul"); 149 149 var vInstantApply = pContext.window.extPoints.readPref("browser.preferences.instantApply", false); 150 150 ui.openUniqueDialog("scenari:preferences", pContext.window, vUrlPrefs, "", "chrome,centerscreen,titlebar,toolbar,modal" + (vInstantApply ? ",dialog=no" : "")); -
trunk/Xul_XedLib/scenariXedLib.manifest
r14716 r15082 1 1 content scenariXedLib ##target.content.uri##/content/scenariXedLib/ xpcnativewrappers=no 2 2 content scenariXedLib-platform ##target.content.uri##/content/scenariXedLib-platform/ platform xpcnativewrappers=no 3 4 # Declaration des extPoints 5 overlay chrome://scenariCore/content/desks/prefDesk/extPoint.js chrome://scenariXedLib/content/preferences/prefDesk.extPoints.js
Note: See TracChangeset
for help on using the changeset viewer.