8:00 – 5:00 SR
- DB Backups
- Fix __view_monthly_obligations_by_contract so that requisition_id’s with different po_reference show up in “unclaimed”
- Fix funded_budget to requisition id on two views.
- Refactoring!
- Change the this.set() functions (or at least the strings) to variables (i.e _ATTR_FOO = ‘foo’); possibly using a factory pattern? (from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Closures). Yep, that worked just fine.
function makeAdder(x) {
return function(y) {
return x + y;
};
}
var add5 = makeAdder(5);
var add10 = makeAdder(10);
console.log(add5(2)); console.log(add10(2));
- Try moving function declarations below prototype and removing predefinitions.
- Add skybox argument
- Everything is pretty much completely refactored. I think this is more clear and less error-prone. It looks exactly the same, but is remarkably different under the skin.
- Next is hierarchical models.
You must be logged in to post a comment.