Mozilla Home
Privacy
Cookies
Legal
Bugzilla
Browse
Advanced Search
New Bug
Reports
Documentation
Log In
Log In with GitHub
or
Remember me
Browse
Advanced Search
New Bug
Reports
Documentation
Attachment 77105 Details for
Bug 134503
[patch]
Patch v1
BugFix_134503.txt (text/plain), 924 bytes, created by
Charles Manske
(
hide
)
Description:
Patch v1
Filename:
MIME Type:
Creator:
Charles Manske
Size:
924 bytes
patch
obsolete
>Index: editor.js >=================================================================== >RCS file: /cvsroot/mozilla/editor/ui/composer/content/editor.js,v >retrieving revision 1.150 >diff -u -8 -r1.150 editor.js >--- editor.js 27 Mar 2002 02:04:43 -0000 1.150 >+++ editor.js 1 Apr 2002 23:02:25 -0000 >@@ -1202,17 +1250,18 @@ > try { > element = event.target.QueryInterface(Components.interfaces.nsIDOMElement); > } catch (e) {} > > // We use "href" instead of "a" to not be fooled by named anchor > if (!element) > element = editorShell.GetSelectedElement("href"); > >- if (element) >+ // We get an event with nodeName="HTML" when double-clicking on scroll arrow! >+ if (element && element.nodeName && element.nodeName.toLowerCase() != "html" ) > { > goDoCommand("cmd_objectProperties"); > event.preventDefault(); > } > } > } > > function EditorClick(event)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
Actions:
View
|
Diff
|
Review
Attachments on
bug 134503
:
77105
|
78036
|
78349
|
78390
|
78932