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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-2 / +5 lines)
Lines 1077-1087 $(document).ready(function() { Link Here
1077
            <ol id="quick_add_list">
1077
            <ol id="quick_add_list">
1078
            </ol>
1078
            </ol>
1079
        </fieldset>
1079
        </fieldset>
1080
1080
        <fieldset class="rows" id="qa-save">
1081
        <fieldset class="action">
1081
        <fieldset class="action">
1082
            <input type="button" class="save_quick_add"  value="Save" />
1082
            <button type="button" class="save_quick_add"  name="QA-Save">
1083
                <i class="fa fa-save"></i> Save
1084
            </button>
1083
           <a class="cancel" href="/cgi-bin/koha/members/member.pl">Cancel</a>
1085
           <a class="cancel" href="/cgi-bin/koha/members/member.pl">Cancel</a>
1084
        </fieldset>
1086
        </fieldset>
1087
        </fieldset>
1085
1088
1086
    </form>
1089
    </form>
1087
    <script>
1090
    <script>
(-)a/koha-tmpl/intranet-tmpl/prog/js/members.js (-1 / +8 lines)
Lines 351-354 $(document).ready(function(){ Link Here
351
        e.preventDefault();
351
        e.preventDefault();
352
    });
352
    });
353
    $('#floating-save').css( { bottom: parseInt( $('#floating-save').css('bottom') ) + $('#changelanguage').height() + 'px' } );
353
    $('#floating-save').css( { bottom: parseInt( $('#floating-save').css('bottom') ) + $('#changelanguage').height() + 'px' } );
354
    $('#qa-save').css( { 
355
        bottom: parseInt( $('#qa-save').css('bottom') ) + $('#changelanguage').height() + 'px' ,
356
        "background-color": "rgba(185, 216, 217, 0.6)",
357
        "bottom": "3%", 
358
        "position": "fixed", 
359
        "right": "1%", 
360
        "width": "150px",
361
    } );
354
});
362
});
355
- 

Return to bug 3534