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