1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 15:48:00 +01:00

move LocalFile and fopen to a vimperator.io namespace

This commit is contained in:
Doug Kearns
2007-10-16 01:53:37 +00:00
parent 5eb7d90013
commit 70a4dff190
4 changed files with 29 additions and 29 deletions

View File

@@ -951,7 +951,7 @@ function Mappings() //{{{
if (url.match(/^file:\/\//) || url.match(/^\//))
{
var stripedFilename = url.replace(/^(file:\/\/)?(.*)/, "$2");
var file = vimperator.fopen(stripedFilename, '<');
var file = vimperator.io.fopen(stripedFilename, '<');
if (!file)
return false;