witten
/
luminotes
Archived
1
0
Fork 0

Made link pattern case insensitive to match uppercase <A> tags in IE. This

fixes the following bug: When you set a note as a startup note and add its
link to the note tree in IE6, the link isn't added with a visible expander
even if it has child links.
This commit is contained in:
Dan Helfman 2008-04-16 01:14:37 +00:00
parent 4398d07d4c
commit ec526e9e41
1 changed files with 1 additions and 1 deletions

View File

@ -2613,7 +2613,7 @@ Note_tree.prototype.link_clicked = function ( event ) {
event.stop();
}
LINK_PATTERN = /<a\s+([^>]+\s)?href="[^"]+"[^>]*>/;
LINK_PATTERN = /<a\s+([^>]+\s)?href="[^"]+"[^>]*>/i;
Note_tree.prototype.add_root_link = function ( editor ) {
// for now, only add startup notes to the note tree