Bug 179293 - time tracking js should only appear if time tracking is

enabled patch by Jeff Hedlund <jeff.hedlund@matrixsi.com> r=bbaetz, a=justdave
parent 59006d0d
...@@ -34,27 +34,29 @@ ...@@ -34,27 +34,29 @@
[% PROCESS bug/navigate.html.tmpl %] [% PROCESS bug/navigate.html.tmpl %]
[% PROCESS bug/time.html.tmpl %] [% PROCESS bug/time.html.tmpl %]
<script type="text/javascript" language="JavaScript"> [% IF UserInGroup(Param('timetrackinggroup')) %]
<!-- <script type="text/javascript" language="JavaScript">
var fRemainingTime = [% bug.remaining_time %]; // holds the original value <!--
function adjustRemainingTime() { var fRemainingTime = [% bug.remaining_time %]; // holds the original value
// subtracts time spent from remaining time function adjustRemainingTime() {
var new_time; // subtracts time spent from remaining time
var new_time;
new_time =
fRemainingTime - document.changeform.work_time.value; new_time =
// get upto 2 decimal places fRemainingTime - document.changeform.work_time.value;
document.changeform.remaining_time.value = // get upto 2 decimal places
Math.round(new_time * 100)/100; document.changeform.remaining_time.value =
} Math.round(new_time * 100)/100;
}
function updateRemainingTime() {
// if the remaining time is changed manually, update fRemainingTime function updateRemainingTime() {
fRemainingTime = document.changeform.remaining_time.value; // if the remaining time is changed manually, update fRemainingTime
} fRemainingTime = document.changeform.remaining_time.value;
}
//-->
</script> //-->
</script>
[% END %]
<hr> <hr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment