Merge branch 'master' of github.com:InTradeSysTeam/webmaker-app

This commit is contained in:
Timm Haucke 2014-10-24 17:52:01 +02:00
Родитель 7402125eba 7910aaafa2
Коммит 4b6974909f
2 изменённых файлов: 10 добавлений и 5 удалений

Просмотреть файл

@ -27,12 +27,15 @@ module.exports = {
},
ready: function (){
var self = this;
// Fetch collected Data
/*var data = new Data('foooobar');
// Fetch collected Data
self.currentDataSets = [];
data.getAllDataSets(function(currentDataSets) {
self.currentDataSets = currentDataSets;
});*/
if(!self.isEditing) {
var data = new Data(self.$parent.$parent.$data.app.id);
data.getAllDataSets(function(currentDataSets) {
self.currentDataSets = currentDataSets;
});
}
}
};

Просмотреть файл

@ -114,6 +114,8 @@
.noDataInfo {
border-bottom: 1px solid @borderColor;
border-top: 1px solid @borderColor;
margin-top: -1px;
padding: 10px 14px;
font-size: 14px;
color: @darkGrey;