mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-17 08:35:00 +00:00
9 lines
229 B
JavaScript
9 lines
229 B
JavaScript
var hr_set_tips = function() {
|
|
$c_obj('Module Tip Control', 'get_tip', 'hr', function(r,rt) {
|
|
if(r.message) {
|
|
$(parent.tip_area).html('<b>Tip: </b>' + r.message).css('display','block');
|
|
}
|
|
} );
|
|
}
|
|
|
|
hr_set_tips(); |