mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-11 07:55:47 +01:00
Make caret visible while selected when in Visual Text Edit mode.
This commit is contained in:
@@ -1837,11 +1837,11 @@ var Buffer = Module("Buffer", {
|
||||
notificationCallbacks: Class(XPCOM([Ci.nsIChannelEventSink, Ci.nsIInterfaceRequestor]), {
|
||||
getInterface: function getInterface(iid) this.QueryInterface(iid),
|
||||
|
||||
asyncOnChannelRedirect: util.wrapCallback(function (oldChannel, newChannel, flags, callback) {
|
||||
asyncOnChannelRedirect: function (oldChannel, newChannel, flags, callback) {
|
||||
if (newChannel instanceof Ci.nsIHttpChannel)
|
||||
newChannel.requestMethod = "HEAD";
|
||||
callback.onRedirectVerifyCallback(Cr.NS_OK);
|
||||
})
|
||||
}
|
||||
})()
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user