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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt (-7 / +3 lines)
Lines 46-53 Link Here
46
    }
46
    }
47
47
48
    $(document).ready(function() {
48
    $(document).ready(function() {
49
        new YAHOO.widget.Button("newcurrency");
50
51
        // prevents users to check active with a currency != 1
49
        // prevents users to check active with a currency != 1
52
        $("#rate").keyup(function() {
50
        $("#rate").keyup(function() {
53
            check_currency( $(this).val() );
51
            check_currency( $(this).val() );
Lines 76-85 Link Here
76
    <div class="yui-b">
74
    <div class="yui-b">
77
75
78
[% IF ( else ) %]
76
[% IF ( else ) %]
79
<div id="toolbar">
77
<div id="toolbar" class="btn-toolbar">
80
    <ul class="toolbar">
78
    <a class="btn btn-small" id="newcurrency" href="[% script_name %]?op=add_form"><i class="icon-plus"></i> New currency</a>
81
    <li><a id="newcurrency" href="[% script_name %]?op=add_form">New currency</a></li>
79
</div>
82
</ul></div>
83
[% END %]
80
[% END %]
84
81
85
[% IF ( add_form ) %]
82
[% IF ( add_form ) %]
86
- 

Return to bug 9632