gildaspk:autoform-medium

v0.0.3Published 10 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Meteor Autoform Medium Editor

Adds medium editor for autoform.

Setup

  1. meteor add gildaspk:autoform-medium

Usage

You can apply it directly in your template:

{{> afFieldInput name='richTextFieldName' type="medium"}}

You can also specify it at the schema level:

MySchema = new SimpleSchema({
  richTextFieldName: {
    type: String
    autoform: {
      type="medium"
    }
  }
});