View | Details | Raw Unified | Return to bug 24649
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt (-2 / +2 lines)
Lines 252-258 $(document).ready(function() { Link Here
252
                <input type="hidden" name="subfield" value="[% iteminformatio.subfield | html %]" />
252
                <input type="hidden" name="subfield" value="[% iteminformatio.subfield | html %]" />
253
                <input type="hidden" name="mandatory" value="[% iteminformatio.mandatory | html %]" />
253
                <input type="hidden" name="mandatory" value="[% iteminformatio.mandatory | html %]" />
254
                [% IF ( iteminformatio.repeatable ) %]
254
                [% IF ( iteminformatio.repeatable ) %]
255
                    <a href="#" class="buttonPlus" onclick="CloneItemSubfield(this.parentNode); return false;">
255
                    <a href="#" class="buttonPlus" onclick="CloneItemSubfield(this.parentNode.parentNode); return false;">
256
                        <img src="[% interface | html %]/[% theme | html %]/img/clone-subfield.png" alt="Clone" title="Clone this subfield" />
256
                        <img src="[% interface | html %]/[% theme | html %]/img/clone-subfield.png" alt="Clone" title="Clone this subfield" />
257
                    </a>
257
                    </a>
258
                [% END %]
258
                [% END %]
Lines 404-410 $(document).ready(function() { Link Here
404
                <input type="hidden" name="subfield" value="[% iteminformatio.subfield | html %]" />
404
                <input type="hidden" name="subfield" value="[% iteminformatio.subfield | html %]" />
405
                <input type="hidden" name="mandatory" value="[% iteminformatio.mandatory | html %]" />
405
                <input type="hidden" name="mandatory" value="[% iteminformatio.mandatory | html %]" />
406
                [% IF ( iteminformatio.repeatable ) %]
406
                [% IF ( iteminformatio.repeatable ) %]
407
                    <a href="#" class="buttonPlus" onclick="CloneItemSubfield(this.parentNode); return false;">
407
                    <a href="#" class="buttonPlus" onclick="CloneItemSubfield(this.parentNode.parentNode); return false;">
408
                        <img src="[% interface | html %]/[% theme | html %]/img/clone-subfield.png" alt="Clone" title="Clone this subfield" />
408
                        <img src="[% interface | html %]/[% theme | html %]/img/clone-subfield.png" alt="Clone" title="Clone this subfield" />
409
                    </a>
409
                    </a>
410
                [% END %]
410
                [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt (-2 / +1 lines)
Lines 326-332 $(document).ready(function(){ Link Here
326
              <input type="hidden" name="subfield"       value="[% ite.subfield | html %]" />
326
              <input type="hidden" name="subfield"       value="[% ite.subfield | html %]" />
327
              <input type="hidden" name="mandatory"       value="[% ite.mandatory | html %]" />
327
              <input type="hidden" name="mandatory"       value="[% ite.mandatory | html %]" />
328
              [% IF ( ite.repeatable ) %]
328
              [% IF ( ite.repeatable ) %]
329
                <a href="#" class="buttonPlus" onclick="CloneItemSubfield(this.parentNode); return false;">
329
                <a href="#" class="buttonPlus" onclick="CloneItemSubfield(this.parentNode.parentNode); return false;">
330
                  <img src="[% interface | html %]/[% theme | html %]/img/clone-subfield.png" alt="Clone" title="Clone this subfield" />
330
                  <img src="[% interface | html %]/[% theme | html %]/img/clone-subfield.png" alt="Clone" title="Clone this subfield" />
331
                </a>
331
                </a>
332
              [% END %]
332
              [% END %]
333
- 

Return to bug 24649