ウェブサイトでalohaエディターを使用したいのですが、[ http://aloha-editor.org/ ]からダウンロードしました。ダウンロードしたバンドルには多くのファイルが含まれているため、完全に混乱しています。
aloha.jsとaloha.cssを取得し、次のスクリプトを追加しました
$(document).ready(function () {
Aloha.ready(function () {
var $ = Aloha.jQuery;
$('.editable').aloha();
})
});
しかし、それは機能していません。それから私は試しました
<script src="http://cdn.aloha-editor.org/current/lib/aloha.js"
data-aloha-plugins="common/format,
common/list,
common/link,
common/highlighteditables">
</script>
<!-- load the Aloha Editor CSS styles -->
<link href="http://cdn.aloha-editor.org/current/css/aloha.css" type="text/css" />
<!-- make all elements with class="editable" editable with Aloha Editor -->
<script type="text/javascript">
Aloha.ready( function() {
var $ = Aloha.jQuery;
$('.editable').aloha();
});
</script>
正常に動作します。しかし、ダウンロードしたバンドルを使用したいのですが、すべてのファイルとフォルダを管理する方法を教えてもらえますか(たとえば、画像フォルダやその他のフォルダを配置する必要がある場合)、動作を開始しますか?