template.find

Client template.find(selector) Source Find one element matching selector in this template instance. Arguments selector String The CSS selector to match, scoped to the template contents.

Blaze.isTemplate

Client Blaze.isTemplate(value) import { Blaze } from 'meteor/blaze' Source Returns true if value is a template object like Template.myTemplate. Arguments value Any The value to test.

onRendered

Client Template.myTemplate.onRendered import { Template } from 'meteor/templating' Source Register a function to be called when an instance of this template is inserted into the DOM. Arguments callback Function A function to be added as a callback.

collection.deny

Server collection.deny(options) Source Override allow rules. Options insert, update, remove Function Functions that look at a proposed modification to the database and return true if it should be denied, even if an allow rule says otherwise. fetch Array of Strings Optional performance enhancement. Limits the fields that will be fetched from the database for inspection by your update and remove functions. transform Function Overrides transform on the Collection. Pass null to d

Blaze.renderWithData

Client Blaze.renderWithData(templateOrView, data, parentNode, [nextNode], [parentView]) import { Blaze } from 'meteor/blaze' Source Renders a template or View to DOM nodes with a data context. Otherwise identical to Blaze.render. Arguments templateOrView Blaze.Template or Blaze.View The template (e.g. Template.myTemplate) or View object to render. data Object or Function The data context to use, or a function returning a data context. If a function is provided, it will be reactiv

template.lastNode

Client template.lastNode Source The last top-level DOM node in this template instance.

AccountsClient#loggingIn

Client accountsClient.loggingIn() Source True if a login method (such as Meteor.loginWithPassword, Meteor.loginWithFacebook, or Accounts.createUser) is currently in progress. A reactive data source.

Meteor.users

Anywhere Meteor.users import { Meteor } from 'meteor/meteor' Source A Mongo.Collection containing user documents.

cursor.observe

Anywhere cursor.observe(callbacks) Source Watch a query. Receive callbacks as the result set changes. Arguments callbacks Object Functions to call to deliver the result set as it changes

computation.firstRun

Client computation.firstRun Source True during the initial run of the computation at the time Tracker.autorun is called, and false on subsequent reruns and at other times.