mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Fix splitting by <enter> xpressengine/xe-core@4153dd3
This commit is contained in:
parent
cbb9daddbf
commit
90f049caef
2 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@
|
||||||
<div class="x_control-group multiExample">
|
<div class="x_control-group multiExample">
|
||||||
<label for="multiSelect" class="x_control-label"><em style="color:red">*</em> {$lang->options}</label>
|
<label for="multiSelect" class="x_control-label"><em style="color:red">*</em> {$lang->options}</label>
|
||||||
<div class="x_controls">
|
<div class="x_controls">
|
||||||
<textarea rows="4" cols="42" id="multiSelect" name="default_value" style="vertical-align:top"><block cond="$default_value">{implode('<enter>', $default_value)}</block></textarea>
|
<textarea rows="4" cols="42" id="multiSelect" name="default_value" style="vertical-align:top"><block cond="$default_value">{implode('|@|', $default_value)}</block></textarea>
|
||||||
<p class="x_help-inline">{$lang->about_multi_type}</p>
|
<p class="x_help-inline">{$lang->about_multi_type}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,7 @@ jQuery(function($){
|
||||||
'getMemberAdminInsertJoinForm',
|
'getMemberAdminInsertJoinForm',
|
||||||
{member_join_form_srl:memberFormSrl},
|
{member_join_form_srl:memberFormSrl},
|
||||||
function(ret){
|
function(ret){
|
||||||
var tpl = ret.tpl.replace(/<enter>/g, '\n');
|
var tpl = ret.tpl.replace(/\|@\|/g, '\n');
|
||||||
$('#extendForm').html(tpl);
|
$('#extendForm').html(tpl);
|
||||||
|
|
||||||
if (checked)$('#extendForm #radio_'+checked).attr('checked', 'checked');
|
if (checked)$('#extendForm #radio_'+checked).attr('checked', 'checked');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue