You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 8, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+41-28Lines changed: 41 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,57 +10,70 @@ This directive allows you to add a TinyMCE editor to your form elements.
10
10
# Testing
11
11
12
12
We use karma and jshint to ensure the quality of the code. The easiest way to run these checks is to use grunt:
13
-
14
-
npm install -g grunt-cli
15
-
npm install
16
-
bower install
17
-
grunt
13
+
```
14
+
npm install -g grunt-cli
15
+
npm install
16
+
bower install
17
+
grunt
18
+
```
18
19
19
20
The karma task will try to open Chrome as a browser in which to run the tests. Make sure this is available or change the configuration in `test\test.config.js`
20
21
21
22
# Usage
22
23
23
24
We use [bower](http://twitter.github.com/bower/) for dependency management. Add
24
25
25
-
dependencies: {
26
-
"angular-ui-tinymce": "latest"
27
-
}
26
+
```
27
+
dependencies: {
28
+
"angular-ui-tinymce": "latest"
29
+
}
30
+
```
28
31
29
32
To your `bower.json` file. Then run
30
33
31
-
bower install
34
+
```
35
+
bower install
36
+
```
32
37
33
38
This will copy the ui-tinymce files into your `components` folder, along with its dependencies. Load the script files in your application:
0 commit comments