mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 08:26:16 -04:00
Merge pull request #2282 from ether/chrome-paste
Chrome browser change wrapping type
This commit is contained in:
commit
a52743d8f1
1 changed files with 7 additions and 1 deletions
|
@ -152,7 +152,6 @@ function Ace2Inner(){
|
|||
var dmesg = noop;
|
||||
window.dmesg = noop;
|
||||
|
||||
|
||||
var scheduler = parent; // hack for opera required
|
||||
|
||||
var textFace = 'monospace';
|
||||
|
@ -597,6 +596,13 @@ function Ace2Inner(){
|
|||
fixView();
|
||||
});
|
||||
}, 0);
|
||||
|
||||
// Chrome can't handle the truth.. If CSS rule white-space:pre-wrap
|
||||
// is true then any paste event will insert two lines..
|
||||
if(browser.chrome){
|
||||
$("#innerdocbody").css({"white-space":"normal"});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function setStyled(newVal)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue