Lines 1-5
Link Here
|
1 |
/* global confirmDelete */ |
1 |
/* global confirmDelete */ |
2 |
/* exported uncheckbox isNotNull isNull isNum log calcTotalRow autoFillRow messenger updateCosts calcNewsuggTotal getAuthValueDropbox totalExceedsBudget budgetExceedsParent checkBudgetParent hideColumn showColumn showAllColumns hideAllColumns */ |
2 |
/* exported uncheckbox isNotNull isNull isNum log calcTotalRow autoFillRow updateCosts calcNewsuggTotal getAuthValueDropbox totalExceedsBudget budgetExceedsParent checkBudgetParent hideColumn showColumn showAllColumns hideAllColumns */ |
3 |
|
3 |
|
4 |
//======================================================================= |
4 |
//======================================================================= |
5 |
//input validation: |
5 |
//input validation: |
Lines 172-196
function autoFillRow(bud_id) {
Link Here
|
172 |
remainingTotal.style.color = "black"; |
172 |
remainingTotal.style.color = "black"; |
173 |
} |
173 |
} |
174 |
|
174 |
|
175 |
function messenger(X, Y, etc) { |
|
|
176 |
// FIXME: unused? |
177 |
win = window.open( |
178 |
"", |
179 |
"mess", |
180 |
"height=" + X + ",width=" + Y + ",screenX=150,screenY=0" |
181 |
); |
182 |
win.focus(); |
183 |
win.document.close(); |
184 |
win.document.write( |
185 |
"<body link='#333333' bgcolor='#ffffff' text='#000000'><font size='2'><p><br />" |
186 |
); |
187 |
win.document.write(etc); |
188 |
win.document.write( |
189 |
"<center><form><input type=button onclick='self.close()' value='Close'></form></center>" |
190 |
); |
191 |
win.document.write("</font></body></html>"); |
192 |
} |
193 |
|
194 |
//======================================================================= |
175 |
//======================================================================= |
195 |
|
176 |
|
196 |
// NEXT BLOCK IS USED BY NEWORDERBEMPTY |
177 |
// NEXT BLOCK IS USED BY NEWORDERBEMPTY |
197 |
- |
|
|