@@ -1771,7 +1771,7 @@ Template.api.template_helpers = {
17711771
17721772Template . api . template_findAll = {
17731773 id : "template_findAll" ,
1774- name : "<em>this </em>.findAll(selector) and <em>this </em>.$(selector)" ,
1774+ name : "<em>template </em>.findAll(selector) and <em>template </em>.$(selector)" ,
17751775 locus : "Client" ,
17761776 descr : [ "Find all elements matching `selector` in this template instance." ] ,
17771777 args : [
@@ -1783,7 +1783,7 @@ Template.api.template_findAll = {
17831783
17841784Template . api . template_find = {
17851785 id : "template_find" ,
1786- name : "<em>this </em>.find(selector)" ,
1786+ name : "<em>template </em>.find(selector)" ,
17871787 locus : "Client" ,
17881788 descr : [ "Find one element matching `selector` in this template instance." ] ,
17891789 args : [
@@ -1795,28 +1795,28 @@ Template.api.template_find = {
17951795
17961796Template . api . template_firstNode = {
17971797 id : "template_firstNode" ,
1798- name : "<em>this </em>.firstNode" ,
1798+ name : "<em>template </em>.firstNode" ,
17991799 locus : "Client" ,
18001800 descr : [ "The first top-level DOM node in this template instance." ]
18011801} ;
18021802
18031803Template . api . template_lastNode = {
18041804 id : "template_lastNode" ,
1805- name : "<em>this </em>.lastNode" ,
1805+ name : "<em>template </em>.lastNode" ,
18061806 locus : "Client" ,
18071807 descr : [ "The last top-level DOM node in this template instance." ]
18081808} ;
18091809
18101810Template . api . template_data = {
18111811 id : "template_data" ,
1812- name : "<em>this </em>.data" ,
1812+ name : "<em>template </em>.data" ,
18131813 locus : "Client" ,
18141814 descr : [ "The data context of this instance's latest invocation." ]
18151815} ;
18161816
18171817Template . api . template_autorun = {
18181818 id : "template_autorun" ,
1819- name : "<em>this </em>.autorun(runFunc)" ,
1819+ name : "<em>template </em>.autorun(runFunc)" ,
18201820 locus : "Client" ,
18211821 descr : [ "A version of [Tracker.autorun](#tracker_autorun) that is stopped when the template is destroyed." ] ,
18221822 args : [
@@ -1828,7 +1828,7 @@ Template.api.template_autorun = {
18281828
18291829Template . api . template_view = {
18301830 id : "template_view" ,
1831- name : "<em>this </em>.view" ,
1831+ name : "<em>template </em>.view" ,
18321832 locus : "Client" ,
18331833 descr : [ "The [View](#ui_view) object for this invocation of the template." ]
18341834} ;
0 commit comments