Is there a way to check the value of a string in meteor helper?
Lets say i have this helper
Template.example.helpers({
typeOfVideo:function(videoType){
var videoLink = GS.Gems.Collections.Gems.findOne({_id:this._id}).videoLink;
if(videoLink.match(/youtube\.com/)){
return "youtube";
}else if(videoLink.match(/vimeo\.com/)){
return "vimeo";
}else{
return "undefined"
}
}
})
Now i want to check if the video is equal to Youtube, Vimeo or undefined, i could do by returning true/false, but since there are more i want to know what type of video im dealing with
Already try with
{{#if typeOfVideo=youtube}} <!-- also {{#if typeOfVideo 'youtube'}}
youtube
{{/if}}
{{#if typeOfVideo=vimeo}}
vimeo
{{/if}}
And the templates render all the value (youtube,vimeo), im missing somehting?