Fix for view title parameter

This commit is contained in:
Rijk van Wel 2015-04-16 16:01:16 +02:00
parent 3715db0df5
commit b14f14d0a4

View file

@ -22,7 +22,7 @@ Template.ionView.helpers({
},
title: function () {
if ( Template.instance().data && Template.instance().data.title ) {
return this.title;
return Template.instance().data.title;
}
}
});