Archived
1
0

Fixed a Firefox bug in which copying and pasting text between notes inserted line breaks in the pasted text.

This commit is contained in:
Dan Helfman 2009-04-27 19:01:26 -07:00
parent 882ccbc808
commit d0c5491400
3 changed files with 8 additions and 7 deletions

10
NEWS
View File

@ -4,15 +4,17 @@
* Changed some of the "+" buttons to be more descriptive: "+ notebook" and
"+ note link".
* Moved search field up above "notes" heading.
* Fixed a Firefox bug in which removing some bold text and then typing new
text would make the new text bold. Now, if you completely remove some bold
text (rather than just a portion of it), any new text that you type will be
unformatted.
* Fixed a bug in which toolbar buttons didn't depress based on the current
location of the text cursor.
* Fixed a bug in which discussion forum bylines ("Posted by...") were
sometimes duplicated several times on a given post. Now bylines are
displayed below each post rather than within it.
* Fixed a Firefox bug in which removing some bold text and then typing new
text would make the new text bold. Now, if you completely remove some bold
text (rather than just a portion of it), any new text that you type will be
unformatted.
* Fixed a Firefox bug in which copying and pasting text between notes
inserted line breaks in the pasted text.
1.6.10: March 20, 2009
* Faster uploads and downloads for users of luminotes.com.

View File

@ -599,8 +599,7 @@ h1 {
margin: 0em;
font-size: 90%;
line-height: 140%;
white-space: -moz-pre-wrap;
white-space: pre-wrap;
white-space: pre-line;
word-wrap: break-word;
}

View File

@ -45,7 +45,7 @@ function Shared_iframe() {
padding = '0.4em 1.5em 1em 1.5em';
document.write(
'<html><head><style>html { padding: 0em; margin: 0; } body { padding: ' + padding + '; margin: 0; font-size: 90%; line-height: 140%; font-family: sans-serif; white-space: -moz-pre-wrap; white-space: pre-wrap; word-wrap: break-word; } h3 { padding-bottom: 0.25em; border-bottom: 1px solid #dddddd; margin-bottom: 0.75em; } a[target ^= "_new"] { background: url(/static/images/web_icon_tiny.png) right center no-repeat; padding-right: 13px; } .diff a[target ^= "_new"] { background-image: none; padding-right: 0; } a:hover { color: #ff6600; } img { border-width: 0; } .left_justified { float: left; margin: 0.5em 1.5em 0.5em 0; } .center_justified { display: block; margin: 0.5em auto 0.5em auto; text-align: center; } .right_justified { float: right; margin: 0.5em 0 0.5em 1.5em; } hr { border: 0; color: #000000; background-color: #000000; height: 1px; } ul { list-style-type: disc; } ul li { margin-top: 0.5em; } ol li { margin-top: 0.5em; } .center_text { text-align: center; } .small_text { padding-top: 0.5em; font-size: 90%; } .indented { margin-left: 1em; } .thumbnail_left { float: left; margin: 0.5em; margin-right: 1em; margin-bottom: 0.5em; border: 1px solid #999999; } .thumbnail_right { float: right; margin: 0.5em; margin-left: 1em; margin-bottom: 0.5em; border: 1px solid #999999; }</style>' +
'<html><head><style>html { padding: 0em; margin: 0; } body { padding: ' + padding + '; margin: 0; font-size: 90%; line-height: 140%; font-family: sans-serif; white-space: pre-line; word-wrap: break-word; } h3 { padding-bottom: 0.25em; border-bottom: 1px solid #dddddd; margin-bottom: 0.75em; } a[target ^= "_new"] { background: url(/static/images/web_icon_tiny.png) right center no-repeat; padding-right: 13px; } .diff a[target ^= "_new"] { background-image: none; padding-right: 0; } a:hover { color: #ff6600; } img { border-width: 0; } .left_justified { float: left; margin: 0.5em 1.5em 0.5em 0; } .center_justified { display: block; margin: 0.5em auto 0.5em auto; text-align: center; } .right_justified { float: right; margin: 0.5em 0 0.5em 1.5em; } hr { border: 0; color: #000000; background-color: #000000; height: 1px; } ul { list-style-type: disc; } ul li { margin-top: 0.5em; } ol li { margin-top: 0.5em; } .center_text { text-align: center; } .small_text { padding-top: 0.5em; font-size: 90%; } .indented { margin-left: 1em; } .thumbnail_left { float: left; margin: 0.5em; margin-right: 1em; margin-bottom: 0.5em; border: 1px solid #999999; } .thumbnail_right { float: right; margin: 0.5em; margin-left: 1em; margin-bottom: 0.5em; border: 1px solid #999999; }</style>' +
'<meta content="text/html; charset=UTF-8" http-equiv="content-type"></meta></head><body></body></html>'
);
document.close();