computation.stopped

Client computation.stopped Source True if this computation has been stopped.

Mongo.ObjectID

Anywhere new Mongo.ObjectID([hexString]) import { Mongo } from 'meteor/mongo' Source Create a Mongo-style ObjectID. If you don't specify a hexString, the ObjectID will generated randomly (not using MongoDB's ID construction rules). Arguments hexString String Optional. The 24-character hexadecimal contents of the ObjectID to create

Meteor.clearTimeout

Anywhere Meteor.clearTimeout(id) import { Meteor } from 'meteor/meteor' Source Cancel a function call scheduled by Meteor.setTimeout. Arguments id Number The handle returned by Meteor.setTimeout

Template instances

Template instances A template instance object represents an occurrence of a template in the document. It can be used to access the DOM and it can be assigned properties that persist as the template is reactively updated. Template instance objects are found as the value of this in the onCreated, onRendered, and onDestroyed template callbacks, and as an argument to event handlers. You can access the current template instance from helpers using Template.instance(). In addition to the properties a

meteor build

meteor build Package this project up for deployment. The output is a directory with several build artifacts: a tarball that includes everything necessary to run the application server (see the README in the tarball for details) an unsigned apk bundle and a project source if Android is targetted as a mobile platform a directory with an Xcode project source if iOS is targetted as a mobile platform You can use the application server bundle to host a Meteor application on your own server, instead

customType.clone

Anywhere customType.clone() Source Return a value r such that this.equals(r) is true, and modifications to r do not affect this and vice versa.

computation.invalidate

Client computation.invalidate() Source Invalidates this computation so that it will be rerun.

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.getView

Client Blaze.getView([element]) import { Blaze } from 'meteor/blaze' Source Gets either the current View, or the View enclosing the given DOM element. Arguments element DOM Element Optional. If specified, the View enclosing element is returned.

this.connection

Server this.connection Source Access inside the publish function. The incoming connection for this subscription.