diff options
author | Doug Kearns <dougkearns@gmail.com> | 2009-06-25 22:50:32 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2009-06-28 16:03:18 +1000 |
commit | f798b979efe51bd57476296cf2fd8b2cbc50159b (patch) | |
tree | 759e93fab79557268a404296f0880d213000a9e6 /common/content/buffer.js | |
parent | f4b94374aedb9dab6b0132a3d9011d6c0bc5a1ed (diff) | |
download | pentadactyl-f798b979efe51bd57476296cf2fd8b2cbc50159b.tar.gz |
Move 'fullscreen' definition to the liberator module.
Diffstat (limited to 'common/content/buffer.js')
-rw-r--r-- | common/content/buffer.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/common/content/buffer.js b/common/content/buffer.js index 835d9252..65603143 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -147,15 +147,6 @@ function Buffer() //{{{ ////////////////////// OPTIONS ///////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////{{{ - // FIXME: Most certainly belongs elsewhere. - options.add(["fullscreen", "fs"], - "Show the current window fullscreen", - "boolean", false, - { - setter: function (value) window.fullScreen = value, - getter: function () window.fullScreen - }); - options.add(["nextpattern"], // \u00BB is ยป (>> in a single char) "Patterns to use when guessing the 'next' page in a document sequence", "stringlist", "\\bnext\\b,^>$,^(>>|\u00BB)$,^(>|\u00BB),(>|\u00BB)$,\\bmore\\b"); |