mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-16 14:15:49 +01:00
Documentation.
This commit is contained in:
@@ -368,9 +368,13 @@ var Styles = Module("Styles", {
|
||||
for (let prop in Styles.propertyIter(str))
|
||||
props[prop.name] = prop.value;
|
||||
|
||||
return Object.keys(props)[sort ? "sort" : "slice"]()
|
||||
.map(function (prop) prop + ": " + props[prop] + ";")
|
||||
.join(" ");
|
||||
let val = Object.keys(props)[sort ? "sort" : "slice"]()
|
||||
.map(function (prop) prop + ": " + props[prop] + ";")
|
||||
.join(" ");
|
||||
|
||||
if (/^\s*(\/\*.*?\*\/)/.exec(src))
|
||||
val = RegExp.$1 + " " + val;
|
||||
return val;
|
||||
},
|
||||
|
||||
completeSite: function (context, content, group) {
|
||||
|
||||
Reference in New Issue
Block a user