remove unused console.logs and code

This commit is contained in:
Vladimir Polyakov 2015-05-04 23:42:47 +03:00
parent d2a3be53b6
commit a1951016a9
3 changed files with 0 additions and 8 deletions

View File

@ -6,11 +6,6 @@ define([
'templates/app/components/app'
], function(React, Projects, template) {
var Component = React.createClass({
getInitialState: function() {
return {
projects: []
};
},
render: function() {
return template({
ProjectsList: Projects.List

View File

@ -1,5 +1,4 @@
div
h2 projects list
- console.log(this);
each project in items
Item(item=project)

View File

@ -13,8 +13,6 @@ define([
},
readAll: function() {
resources.projects.sync('read', function(err, projects) {
console.log(err);
console.log(projects);
ProjectActions.load(projects)
});
}