Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,15 @@ Summernote has a few special features:

### Installation and dependencies

Summernote-foundation uses opensouce libraries: [jQuery](http://jquery.com/), [Foundation](http://http://foundation.zurb.com/), [Font Awesome](https://github.com/FortAwesome/Font-Awesome).
#### With Bower

For other/no frameworks:
```
$ bower install summernote-foundation
```

#### 1. include JS/CSS
#### Without Bower

Summernote-foundation uses opensource libraries: [jQuery](http://jquery.com/), [Foundation](http://http://foundation.zurb.com/), [Font Awesome](https://github.com/FortAwesome/Font-Awesome).

Include the following code in the `<head>` tag of your HTML:

Expand All @@ -45,15 +49,17 @@ Include the following code in the `<head>` tag of your HTML:
<script src="summernote.min.js"></script>
```

#### 2. target elements
### Usage

#### 1. target elements

Then place a `div` tag somewhere in the `body` tag. This element will be replaced with the summernote editor.

```html
<div id="summernote">Hello Summernote</div>
```

#### 3. summernote
#### 2. summernote

Finally, run this script after the DOM is ready:

Expand Down
1 change: 0 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"version": "0.6.0",
"main": [
"summernote.js",
"summernote.min.js",
"summernote.css"
],
"ignore": [
Expand Down