- missing "new" for a new instance
Monday, 22 December 2014
Uncaught TypeError: Cannot read property 'bind' of undefined
Wednesday, 17 December 2014
Marionette region close doesn't work
MySpace.dialogRegion.close();
debug console :
Uncaught TypeError: undefined is not a function
--
use empty() rather than close();
debug console :
Uncaught TypeError: undefined is not a function
--
use empty() rather than close();
Thursday, 11 December 2014
Install Alfresco community edition 5c on Tomcat with MySql
- Setup MySql
- mysql -u root -p
- mysql>create database alfresco CHARACTER SET='utf8' COLLATE='utf8_bin';
- mysql>create user alfresco identified by 'alfresco';
- mysql>GRANT ALL privileges ON alfresco TO 'alfresco'@'localhost';
- Setup Tomcat
- http://docs.alfresco.com/community/tasks/configfiles-change-path.html
- start application
- http://docs.alfresco.com/community/tasks/alf-war-install.html
- login alfresco : http://localhost:8080/share (admin/admin)
Tuesday, 9 December 2014
Uncaught TypeError: Cannot read property 'localStorage' of undefined
When I changed localstorage to backend services, I got this error :
Uncaught TypeError: Cannot read property 'localStorage' of undefined
so I commented the reference of localStorage, then it did work.
<!-- script src="http://cdnjs.cloudflare.com/ajax/libs/backbone-localstorage.js/1.0/backbone.localStorage-min.js" type="text/javascript"></script> -->
Uncaught TypeError: Cannot read property 'localStorage' of undefined
so I commented the reference of localStorage, then it did work.
<!-- script src="http://cdnjs.cloudflare.com/ajax/libs/backbone-localstorage.js/1.0/backbone.localStorage-min.js" type="text/javascript"></script> -->
Subscribe to:
Posts (Atom)