The time, in milliseconds, in which to smooth scroll to a new position.
+
+
+
'spl' 'spelllang''spelllang' 'spl'
diff --git a/common/modules/storage.jsm b/common/modules/storage.jsm
index 6bfa0ccd..d86a1d73 100644
--- a/common/modules/storage.jsm
+++ b/common/modules/storage.jsm
@@ -329,7 +329,11 @@ var File = Class("File", {
/**
* @property {nsIFileURL} Returns the nsIFileURL object for this file.
*/
- get URI() services.io.newFileURI(this).QueryInterface(Ci.nsIFileURL),
+ URI: Class.Memoize(function () {
+ let uri = services.io.newFileURI(this).QueryInterface(Ci.nsIFileURL);
+ uri.QueryInterface(Ci.nsIMutable).mutable = false;
+ return uri;
+ }),
/**
* Iterates over the objects in this directory.
diff --git a/pentadactyl/NEWS b/pentadactyl/NEWS
index 3f6ecbe9..dc7697aa 100644
--- a/pentadactyl/NEWS
+++ b/pentadactyl/NEWS
@@ -73,6 +73,7 @@
• Improved [macro-string] support, including automatic elision
of optional elements, and array subscripts. [b4][b7]
• Add -pentadactyl-remote command-line option. [b8]
+ • Moved the smooth-scroll plugin to the core. [b8]
• Improvements to marks:
- Marks are now stored as line and column ordinals rather than percentages. [b8]
- Marks now store the marked element and ensure its visibility when followed. [b8]
@@ -218,6 +219,7 @@
- Added 'passunknown' option. [b7]
- Changed 'urlseparator' default value to "|". [b3]
- Added "errorconsole", "passwords", and "venkman" dialogs to :dialog. [b2][b8]
+ - Added 'scrollsteps' and 'scrolltime' options. [b8]
- Added 'spelllang' option. [b8]
- Make 'showmode' a [stringlist] option. [b7]
- Added 'wildanchor' option. [b2]