From d44532ae05c3cbf158b60b6814499e235ed845c9 Mon Sep 17 00:00:00 2001 From: Papin Johyn Date: Sun, 19 Apr 2015 21:36:36 +0200 Subject: [PATCH] Update GUIDE.md Problem on the _id of the Path and Link Examples for the lists. --- GUIDE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GUIDE.md b/GUIDE.md index 7046c0d..ebf9620 100644 --- a/GUIDE.md +++ b/GUIDE.md @@ -255,19 +255,19 @@ Meteor uses Iron:Router. Most are familiar with Iron:Router's [pathFor](https:// To call IR's `pathFor` you would specify your route in the `path` attribute. ``` -{{#ionItem path="item.detail" _id:"" data="" query="" hash="" class=""}}...{{/ionItem}} +{{#ionItem path="item.detail" _id="" data="" query="" hash="" class=""}}...{{/ionItem}} ``` To call IR's `urlFor` you would specify your route in the `url` attribute. ``` -{{#ionItem url="item.detail" _id:"" data="" query="" hash="" class=""}}...{{/ionItem}} +{{#ionItem url="item.detail" _id="" data="" query="" hash="" class=""}}...{{/ionItem}} ``` And if you want to specify a path without calling any IR helpers specify your route in the `path` or `route` attribute and make sure not to include any of these attributes `data` `query` `hash` . ``` -{{#ionItem route="item.detail" _id:"" class=""}}...{{/ionItem}} +{{#ionItem route="item.detail" _id="" class=""}}...{{/ionItem}} ``` Lastly you can also pass a raw url by including the `href` attribute.