Commit 3ce121e5 by aagusti

coba merging

1 parent 36cb6bf4
...@@ -5,7 +5,7 @@ __pycache__/ ...@@ -5,7 +5,7 @@ __pycache__/
# C extensions # C extensions
*.so *.so
*.jasper
# Distribution / packaging # Distribution / packaging
.Python .Python
bak/ bak/
......
...@@ -32,6 +32,16 @@ $(document).ready(function () { ...@@ -32,6 +32,16 @@ $(document).ready(function () {
*/ */
}); });
jQuery.browser = {};
(function () {
jQuery.browser.msie = false;
jQuery.browser.version = 0;
if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
jQuery.browser.msie = true;
jQuery.browser.version = RegExp.$1;
}
})();
function number_format(number, decimals, dec_point, thousands_sep) { function number_format(number, decimals, dec_point, thousands_sep) {
// Strip all characters but numerical ones. // Strip all characters but numerical ones.
number = (number + '').replace(/[^0-9+\-Ee.]/g, ''); number = (number + '').replace(/[^0-9+\-Ee.]/g, '');
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!