mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-04 07:27:55 -05:00
17 lines
389 B
PHP
17 lines
389 B
PHP
<script type="text/javascript">
|
|
(function(lang, $) {
|
|
|
|
var lines = {
|
|
'common_submit' : "<?php echo $this->lang->line('common_submit') ?>",
|
|
'common_close' : "<?php echo $this->lang->line('common_close') ?>"
|
|
};
|
|
|
|
$.extend(lang, {
|
|
line: function(key) {
|
|
return lines[key];
|
|
}
|
|
});
|
|
|
|
|
|
})(window.lang = window.lang || {}, jQuery);
|
|
</script> |