angular-redactor
Version:
Directive for redactor WYSIWYG editor
21 lines • 829 B
HTML
<html ng-app="app">
<head>
<title></title>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular-route.js"></script>
<link rel="stylesheet" href="redactor/redactor.css"/>
<script src="redactor/redactor.js"></script>
<script src="redactor/source.js"></script>
</head>
<body>
<div class="container">
<div ng-view></div>
</div>
<script src="../angular-redactor-2.js"></script>
<script src="app.js"></script>
</body>
</html>