Looks to me like you need to edit clientscript/textedit.js. There's 4 references to http:// there, one for images and three for links. Not sure whether you need to remove all 4 references but I just tested and that seemed to work. Note: an F5 refresh was needed to clear the old file from my browser's cache.
Find:
Code:
img = this.show_prompt(vbphrase['enter_image_url'], 'http://', true);
Change to:
Code:
img = this.show_prompt(vbphrase['enter_image_url'], '', true);
Find (twice):
Code:
url = this.show_prompt(vbphrase['enter_link_url'], 'http://', true);
and change both to:
Code:
url = this.show_prompt(vbphrase['enter_link_url'], '', true);
Find:
Code:
this.prompt_link('url', url, vbphrase['enter_link_url'], 'http://');
and change to:
Code:
this.prompt_link('url', url, vbphrase['enter_link_url'], '');