1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 15:07:57 +01:00

Whitespace fixes.

--HG--
extra : rebase_source : 37889b9ebf1f965d0e305d95f488d6c01c54013c
This commit is contained in:
Doug Kearns
2010-11-16 01:10:09 +11:00
parent 4b7a36f520
commit ca9f473b37
2 changed files with 4 additions and 4 deletions

View File

@@ -654,9 +654,9 @@ const Dactyl = Module("dactyl", {
<type>{obj.type}</type>
<default>{obj.stringDefaultValue}</default></>}
<description>{
obj.description ? br+<p>{obj.description.replace(/\.?$/, ".")}</p> : "" }{
extraHelp ? br+extraHelp : "" }{
!(extraHelp || obj.description) ? br+<p>Sorry, no help available.</p> : "" }
obj.description ? br + <p>{obj.description.replace(/\.?$/, ".")}</p> : "" }{
extraHelp ? br + extraHelp : "" }{
!(extraHelp || obj.description) ? br + <p>Sorry, no help available.</p> : "" }
</description>
</item></res>;

View File

@@ -458,7 +458,7 @@ const JavaScript = Module("javascript", {
try {
let i = (this._get(-2) && this._get(-2).char == "(") ? -2 : -1;
if (this._get(i).char == "(") {
let [offset, obj, funcName] = this._getObjKey(i-1);
let [offset, obj, funcName] = this._getObjKey(i - 1);
if (obj.length) {
let func = obj[0][0][funcName];
if (callable(func)) {