CORE-POS/IS4C

View on GitHub
fannie/modules/plugins2.0/QuickLookups/images.js

Summary

Maintainability
A
0 mins
Test Coverage
var qlImg = (function ($) {
    
    var mod = {};

    mod.showForm = function(id) {
        if (id == '') {
            $('#entryArea').html('');
            return;
        }
        $.ajax({
            url: 'QuickLookupsImages.php',
            data: 'id='+id+'&form=1',
        }).success(function (resp) {
            $('#entryArea').html(resp);
        });
    };

    return mod;

}(jQuery));