mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Merge pull request #21 from CodeBlock/master
Fix Paste's long-line issue - might later replace this with an overflow-x hack like Evan suggested.
This commit is contained in:
commit
988b038e2e
1 changed files with 3 additions and 2 deletions
|
@ -104,7 +104,7 @@ class PhabricatorPasteViewController extends PhabricatorPasteController {
|
|||
$corpus_table = phutil_render_tag(
|
||||
'table',
|
||||
array(
|
||||
'class' => "diffusion-source remarkup-code PhabricatorMonospaced",
|
||||
'class' => 'diffusion-source remarkup-code PhabricatorMonospaced',
|
||||
),
|
||||
implode("\n", $rows));
|
||||
|
||||
|
@ -127,7 +127,8 @@ class PhabricatorPasteViewController extends PhabricatorPasteController {
|
|||
// And eventually this will highlight a line that you click
|
||||
// like diffusion does. Or maybe allow for line comments
|
||||
// like differential. Either way it will be better than it is now.
|
||||
$rows[] = '<tr><th>'.$n.'</th><td>'.$line.'</td></tr>';
|
||||
$rows[] = '<tr><th>'.$n.'</th>'.
|
||||
'<td style="white-space: pre-wrap;">'.$line.'</td></tr>';
|
||||
++$n;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue