mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-21 23:05:46 +01:00
Add missing semicolons.
--HG-- extra : rebase_source : d0f7ae9f98a691c7a721e8203121964d7976447e
This commit is contained in:
@@ -175,7 +175,7 @@ var RangeFinder = Module("rangefinder", {
|
||||
|
||||
modes.addMode("FIND", {
|
||||
description: "Find mode, active when typing search input",
|
||||
bases: [modes.COMMAND_LINE],
|
||||
bases: [modes.COMMAND_LINE]
|
||||
});
|
||||
modes.addMode("FIND_FORWARD", {
|
||||
description: "Forward Find mode, active when typing search input",
|
||||
@@ -398,7 +398,7 @@ var RangeFind = Class("RangeFind", {
|
||||
var node = util.evaluateXPath(RangeFind.selectNodePath,
|
||||
this.lastRange.commonAncestorContainer).snapshotItem(0);
|
||||
if (node) {
|
||||
node.focus()
|
||||
node.focus();
|
||||
// Re-highlight collapsed selection
|
||||
this.selectedRange = this.lastRange;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user