Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
irul
/
opensipkd-base
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 3ce121e5
authored
Mar 18, 2023
by
aagusti
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
coba merging
1 parent
36cb6bf4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletions
.gitignore
opensipkd/base/static/v3/js/osipkd.js
.gitignore
View file @
3ce121e
...
@@ -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/
...
...
opensipkd/base/static/v3/js/osipkd.js
View file @
3ce121e
...
@@ -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
,
''
);
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment