mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 14:02:28 +01:00
add missing semicolons
This commit is contained in:
@@ -573,7 +573,7 @@ liberator.Buffer = function () //{{{
|
|||||||
|
|
||||||
// TODO: how should we handle duplicate titles?
|
// TODO: how should we handle duplicate titles?
|
||||||
stylesheets = stylesheets.filter(function (stylesheet) {
|
stylesheets = stylesheets.filter(function (stylesheet) {
|
||||||
return !(!/^(screen|all|)$/i.test(stylesheet.media.mediaText) || /^\s*$/.test(stylesheet.title))
|
return !(!/^(screen|all|)$/i.test(stylesheet.media.mediaText) || /^\s*$/.test(stylesheet.title));
|
||||||
});
|
});
|
||||||
|
|
||||||
return stylesheets;
|
return stylesheets;
|
||||||
|
|||||||
@@ -595,7 +595,7 @@ liberator.Hints = function () //{{{
|
|||||||
completer: function (filter)
|
completer: function (filter)
|
||||||
{
|
{
|
||||||
return ["contains", "wordstartswith", "firstletters", "custom"]
|
return ["contains", "wordstartswith", "firstletters", "custom"]
|
||||||
.map(function (m){ return [m, ""] });
|
.map(function (m){ return [m, ""]; });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -181,7 +181,7 @@ liberator.config = { //{{{
|
|||||||
},
|
},
|
||||||
NotifyDocumentCreated: function () {},
|
NotifyDocumentCreated: function () {},
|
||||||
NotifyDocumentWillBeDestroyed: function () {}
|
NotifyDocumentWillBeDestroyed: function () {}
|
||||||
}
|
};
|
||||||
|
|
||||||
|
|
||||||
// XXX: Hack!
|
// XXX: Hack!
|
||||||
|
|||||||
Reference in New Issue
Block a user