All Projects → JackAdams → meteor-editable-text-wysiwyg-bootstrap-3

JackAdams / meteor-editable-text-wysiwyg-bootstrap-3

Licence: MIT license
WYSIWYG extension for babrahams:editable-text package for bootstrap-3 apps

Programming Languages

HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to meteor-editable-text-wysiwyg-bootstrap-3

meteorman
A DDP client with GUI (The Postman for Meteor)
Stars: ✭ 51 (+183.33%)
Mutual labels:  meteor
tkzd
Meteor Project example ✨
Stars: ✭ 15 (-16.67%)
Mutual labels:  meteor
Meteor-Cookies
🍪 Isomorphic bulletproof cookie functions for client and server
Stars: ✭ 41 (+127.78%)
Mutual labels:  meteor
iOS-HTMLTextEditor
A simple implementation of an HTML Editor using CKEditor in a web view.
Stars: ✭ 57 (+216.67%)
Mutual labels:  wysiwyg
baking-soda
baking-soda is an interface between clojurescript's reagent and reactstrap (i.e., bootstrap 4 react components) and react-bootstrap (i.e., bootstrap 3 react components)
Stars: ✭ 74 (+311.11%)
Mutual labels:  bootstrap3
meteor-auth
A user authentication solution for Mantra applications
Stars: ✭ 34 (+88.89%)
Mutual labels:  meteor
svelte-slate
slate svelte view layer
Stars: ✭ 43 (+138.89%)
Mutual labels:  wysiwyg
MeteorCandy-meteor-admin-dashboard-devtool
The Fast, Secure and Scalable Admin Panel / Dashboard for Meteor.js
Stars: ✭ 50 (+177.78%)
Mutual labels:  meteor
nativescript-ng2-drawer-seed
Nativescript template project with drawer support
Stars: ✭ 17 (-5.56%)
Mutual labels:  meteor
bootstrap-on-wordpress-theme
a blank bootstrap 3.3.7 ready wordpress theme
Stars: ✭ 25 (+38.89%)
Mutual labels:  bootstrap3
UOC-notifier-chrome
UOC notifier for Google Chrome
Stars: ✭ 26 (+44.44%)
Mutual labels:  bootstrap3
raspberry-noaa
Fully automated ISS SSTV, NOAA and Meteor satellite image downloader using Raspberry PI
Stars: ✭ 155 (+761.11%)
Mutual labels:  meteor
typora-hivacruz-theme
A Typora theme forked from Cobalt to match my other color schemes.
Stars: ✭ 38 (+111.11%)
Mutual labels:  wysiwyg
react-tutorial
React Tutorial is the best place to learn how to use React and Meteor together
Stars: ✭ 33 (+83.33%)
Mutual labels:  meteor
atguigu ssm crud
Atguigu-SSM-CRUD 一个最基本的CRUD系统,采用IDEA+Maven搭建,具备前后端交互功能,前端采用BootStrap+Ajax异步请求DOM渲染,后端采用SpringMVC+MyBatis+Mysql8.0+Servlet+Jsp,符合REST风格URL规范,并加入了Hibernate提供的数据校验功能,支持PageHelper的分页功能,很适合SSM阶段性练习。同时用到了很多前端操作以及BootStrap组件,也有利于学习JS和前端框架。
Stars: ✭ 52 (+188.89%)
Mutual labels:  bootstrap3
react-meteor
Meteor Reactivity for your React application, inspired by react-native-meteor.
Stars: ✭ 16 (-11.11%)
Mutual labels:  meteor
daily ui
#dailyui exercises
Stars: ✭ 16 (-11.11%)
Mutual labels:  bootstrap3
bootstrap-print
To manage print media for Twitter Bootstrap v3.
Stars: ✭ 60 (+233.33%)
Mutual labels:  bootstrap3
chaldene
Chaldene Admin Template
Stars: ✭ 46 (+155.56%)
Mutual labels:  bootstrap3
jekyll-material-design
Jekyll Bootstrap 3 with the material design flavour. Publish your materialized blog using GitHub Pages easily.
Stars: ✭ 67 (+272.22%)
Mutual labels:  bootstrap3

WYSIWYG extension for babrahams:editable-text package

This package provides a wysiwyg widget for editing text in-place. It is for apps that use bootstrap-3.

Example app: http://editable-text-demo.taonova.com

Example app repo: https://github.com/JackAdams/editable-text-demo

Minimal example app on meteorpad: http://meteorpad.com/pad/2YdGJmZ9LthGZaLao/editable-text-wysiwyg-bootstrap-3

Quick Start

If your project does not already use bootstrap-3 and fontawesome:

meteor add fortawesome:fontawesome
meteor add twbs:bootstrap-noglyph

This package requires fontawesome and bootstrap-3 to work, but the choice of the particular fontawesome and bootstrap-3 packages is left to the individual - they are not added automatically by this package. Once those are included in your project:

meteor add babrahams:editable-text-wysiwyg-bootstrap-3

You can then drop an editable text widget into any Blaze template with wysiwyg=true:

{{> editableText collection="posts" field="body" wysiwyg=true}}

where "posts" is the name of the mongo collection and "body" is the name of a document field for the posts collection.

collection and field are mandatory fields.

Note: The widget assumes that the data context is that of a single document from the posts collection (with _id value included).

You can also set the data context explicitly as follows:

{{> editableText context=singlePostDocument collection="posts" field="body"}}

where singlePostDocument can be a single post document already set in the current context, or provided by a template helper from the template that the widget was dropped into.

(You can use document, doc, object, obj, data or dataContext instead of context - go with whichever you prefer.)

Documentation

If you have wysiwyg=true, you can also set toolbarPosition=top (instead of the default which is at the bottom) and showToolbar=true (instead of the default where the toolbar is initially concealed).

Read the full documentation for the babrahams:editable-text package at https://github.com/JackAdams/meteor-editable-text.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].