Lines 729-736
Link Here
|
729 |
</select> |
729 |
</select> |
730 |
[% ELSIF ( mv.type == 'text1' ) %] |
730 |
[% ELSIF ( mv.type == 'text1' ) %] |
731 |
<input type="text" id="[%- mv.id | html -%]" name="[%- mv.id | html -%]" value="[%- mv.value | html -%]" class="input_marceditor" tabindex="1" /> |
731 |
<input type="text" id="[%- mv.id | html -%]" name="[%- mv.id | html -%]" value="[%- mv.value | html -%]" class="input_marceditor" tabindex="1" /> |
732 |
[% ELSIF ( mv.type == 'text2' ) %] |
732 |
[% ELSIF ( mv.type == 'text2' ) # plugin %] |
733 |
<input type="text" id="[%- mv.id | html -%]" size="67" maxlength="[%- mv.maxlength | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" class="input_marceditor" /> |
733 |
<input type="text" id="[%- mv.id | html -%]" size="67" maxlength="[%- mv.maxlength | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" data-plugin="[% mv.plugin | html %]" class="input_marceditor framework_plugin" /> |
734 |
[% ELSIF ( mv.type == 'text' ) %] |
734 |
[% ELSIF ( mv.type == 'text' ) %] |
735 |
<input type="text" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" class="input_marceditor" tabindex="1" size="67" maxlength="[%- mv.maxlength | html -%]" /> |
735 |
<input type="text" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" class="input_marceditor" tabindex="1" size="67" maxlength="[%- mv.maxlength | html -%]" /> |
736 |
[% ELSIF ( mv.type == 'textarea' ) %] |
736 |
[% ELSIF ( mv.type == 'textarea' ) %] |
Lines 755-761
Link Here
|
755 |
[% IF mv.noclick %] |
755 |
[% IF mv.noclick %] |
756 |
<a href="#" class="buttonDot tag_editor disabled" tabindex="-1" title="No popup">...</a> |
756 |
<a href="#" class="buttonDot tag_editor disabled" tabindex="-1" title="No popup">...</a> |
757 |
[% ELSE %] |
757 |
[% ELSE %] |
758 |
<a href="#" id="buttonDot_[% mv.id | html %]" class="buttonDot tag_editor" title="Tag editor" data-plugin="[% mv.plugin | html %]">...</a> |
758 |
<a href="#" id="buttonDot_[% mv.id | html %]" class="buttonDot tag_editor framework_plugin" title="Tag editor" data-plugin="[% mv.plugin | html %]">...</a> |
759 |
[% END %] |
759 |
[% END %] |
760 |
[% mv.javascript | $raw %] |
760 |
[% mv.javascript | $raw %] |
761 |
[% END #/IF ( mv.type == 'text1' ) %] |
761 |
[% END #/IF ( mv.type == 'text1' ) %] |