Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit ec56a5f

Browse files
committed
Updating git ignore file to include Intellij created files. Updating documentation with correct source paths & clean up
1 parent 3c581ee commit ec56a5f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
bower_components/
2-
node_modules/
2+
node_modules/
3+
/*.iml
4+
/.idea

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ bower install
3838
This will copy the ui-tinymce files into your `components` folder, along with its dependencies. Load the script files in your application:
3939

4040
```html
41-
<script type="text/javascript" src="app/bower_components/tinymce/tinymce.js"></script>
41+
<script type="text/javascript" src="app/bower_components/tinymce-dist/tinymce.js"></script>
4242
<script type="text/javascript" src="app/bower_components/angular/angular.js"></script>
43-
<script type="text/javascript" src="app/bower_components/angular-ui-tinymce/tinymce.js"></script>
43+
<script type="text/javascript" src="app/bower_components/angular-ui-tinymce/src/tinymce.js"></script>
4444
```
4545

4646
Add the tinymce module as a dependency to your application module:
@@ -99,4 +99,4 @@ myAppModule.controller('MyController', function($scope) {
9999
<form method="post">
100100
<textarea ui-tinymce="tinymceOptions" ng-model="tinymceModel"></textarea>
101101
</form>
102-
```documentation
102+
```

0 commit comments

Comments
 (0)