"use strict";
var AdminFunction = (function () {
function add_product_to_category(id) {
$('#status_' + id).html('Đang xử lý..');
setTimeout(function () {
$('#status_' + id).html('');
}, 1000)
}
return {
add_product_to_category: add_product_to_category
}
})();