-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does dochead work with Blaze in 1.2 #33
Comments
Exact same thing here, [email protected] :
|
Has this been resolved? |
Mine even with Google is not there. I think I have a issue with phantom
|
This will make it work with Blaze FlowRouter.route('/post/:postId', {
name: 'post',
action(params) {
if (Meteor.isClient) {
BlazeLayout.render('layout')
} else {
Meteor.subscribe('posts', params.postId)
if ((post = Posts.findOne(params.postId))) {
DocHead.addMeta({
property: 'og:image',
content: post.image
})
}
}
}
}) |
no!!! I rewrite it all with react router! Thanks BTW I'll try it
|
The dochead doesn't work for me in 1.2 with blaze.
In the head code, I set the default to run in flowrouter trigger enter and in router action.
The head show the code 2 times.
But in facebook debug, I just doesn't make it work!
The text was updated successfully, but these errors were encountered: