8:00 – 5:00 SR
- DB backups
- Angular
- Starting db-backed ‘wizard’ directive. We’ll probably use this mechanism for the Funding Request webapp.
CREATE TABLE IF NOT EXISTS `wizard_table` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `step` int(11) NOT NULL, `question` varchar(255) NOT NULL, `info` varchar(255) NOT NULL, `response_type` varchar(255) NOT NULL, `responses` int(11) NOT NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- Populating table with famous quotes
- Starting the main directive code. Since this isn’t an ng-repeat, I need to load the data and set the first panel with an ng-init call.
- Got everything working. Need to clean up a bit.
