Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
55374a24
Commit
55374a24
authored
Jul 31, 2012
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed Calculatrice app
parent
77af92e2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
9 deletions
+24
-9
ubw-main.js
...rces/library/applications/Calculatrice.wgt/js/ubw-main.js
+24
-9
No files found.
resources/library/applications/Calculatrice.wgt/js/ubw-main.js
View file @
55374a24
...
@@ -350,7 +350,6 @@ function init(){
...
@@ -350,7 +350,6 @@ function init(){
function
compute
(){
function
compute
(){
var
result
;
var
result
;
//alert(calc)
if
(
calc
.
length
<=
1
)
if
(
calc
.
length
<=
1
)
result
=
eval
(
calc
);
result
=
eval
(
calc
);
else
{
else
{
...
@@ -362,7 +361,6 @@ function init(){
...
@@ -362,7 +361,6 @@ function init(){
operation
=
(
calc
.
indexOf
(
"+"
,
0
)
!=
-
1
)?
calc
.
charAt
(
calc
.
indexOf
(
"+"
,
0
)):((
calc
.
indexOf
(
"*"
,
0
)
!=
-
1
)?
calc
.
charAt
(
calc
.
indexOf
(
"*"
,
0
)):((
calc
.
indexOf
(
"/"
,
0
)
!=
-
1
)?
calc
.
charAt
(
calc
.
indexOf
(
"/"
,
0
)):((
calc
.
indexOf
(
"-"
,
0
)
!=
-
1
)?
calc
.
charAt
(
calc
.
indexOf
(
"-"
,
0
)):
""
)));
operation
=
(
calc
.
indexOf
(
"+"
,
0
)
!=
-
1
)?
calc
.
charAt
(
calc
.
indexOf
(
"+"
,
0
)):((
calc
.
indexOf
(
"*"
,
0
)
!=
-
1
)?
calc
.
charAt
(
calc
.
indexOf
(
"*"
,
0
)):((
calc
.
indexOf
(
"/"
,
0
)
!=
-
1
)?
calc
.
charAt
(
calc
.
indexOf
(
"/"
,
0
)):((
calc
.
indexOf
(
"-"
,
0
)
!=
-
1
)?
calc
.
charAt
(
calc
.
indexOf
(
"-"
,
0
)):
""
)));
fNumber
=
fMinus
+
calc
.
substring
(
0
,
calc
.
indexOf
(
operation
,
0
));
fNumber
=
fMinus
+
calc
.
substring
(
0
,
calc
.
indexOf
(
operation
,
0
));
lNumber
=
calc
.
substring
(
calc
.
indexOf
(
operation
,
0
)
+
1
,
calc
.
length
);
lNumber
=
calc
.
substring
(
calc
.
indexOf
(
operation
,
0
)
+
1
,
calc
.
length
);
//alert(fNumber + " | " + operation + " | " + lNumber)
result
=
calcIt
(
fNumber
,
operation
,
lNumber
);
result
=
calcIt
(
fNumber
,
operation
,
lNumber
);
}
}
...
@@ -391,8 +389,8 @@ function init(){
...
@@ -391,8 +389,8 @@ function init(){
lCount
=
(
lNumber
.
indexOf
(
"."
,
0
)
!=
-
1
)?
lNumber
.
substring
(
lNumber
.
indexOf
(
"."
,
0
)
+
1
,
lNumber
.
length
):
""
;
lCount
=
(
lNumber
.
indexOf
(
"."
,
0
)
!=
-
1
)?
lNumber
.
substring
(
lNumber
.
indexOf
(
"."
,
0
)
+
1
,
lNumber
.
length
):
""
;
length
=
(
fCount
.
length
>=
lCount
.
length
)?
fCount
.
length
:
lCount
.
length
;
length
=
(
fCount
.
length
>=
lCount
.
length
)?
fCount
.
length
:
lCount
.
length
;
length
=
Math
.
pow
(
10
,
length
);
length
=
Math
.
pow
(
10
,
length
);
fNumber
=
fNumber
*
length
;
fNumber
=
Math
.
round
(
fNumber
*
length
)
;
lNumber
=
lNumber
*
length
;
lNumber
=
Math
.
round
(
lNumber
*
length
)
;
switch
(
operation
){
switch
(
operation
){
case
"+"
:
case
"+"
:
result
=
(
fNumber
+
lNumber
)
/
length
;
result
=
(
fNumber
+
lNumber
)
/
length
;
...
@@ -516,11 +514,28 @@ function init(){
...
@@ -516,11 +514,28 @@ function init(){
displayTrunk
=
displayTrunk
.
substr
(
0
,
displayTrunk
.
length
-
1
);
displayTrunk
=
displayTrunk
.
substr
(
0
,
displayTrunk
.
length
-
1
);
};
};
if
(
calc
==
"0"
){
if
(
char
!=
"0"
){
if
(
char
!=
"."
){
calc
=
String
(
char
);
displayTrunk
=
String
(
char
);
historyTrunk
=
String
(
char
);
lastchar
.
type
=
"Number"
;
}
else
{
calc
+=
String
(
char
);
displayTrunk
+=
String
(
char
);
historyTrunk
+=
String
(
char
);
lastchar
.
type
=
"Number"
;
}
}
}
else
{
char
=
(
char
==
"."
)?((
displayTrunk
.
indexOf
(
"."
,
0
)
!=
-
1
)?
""
:
"."
):
char
;
calc
+=
String
(
char
);
calc
+=
String
(
char
);
displayTrunk
+=
String
(
char
);
displayTrunk
+=
String
(
char
);
historyTrunk
+=
String
(
char
);
historyTrunk
+=
String
(
char
);
lastchar
.
type
=
"Number"
;
lastchar
.
type
=
"Number"
;
}
}
}
// char is an operator
// char is an operator
else
{
else
{
if
(
calc
.
length
===
0
){
if
(
calc
.
length
===
0
){
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment