0
我想將aloha.js文件移出lib文件夾。由於這將打破路徑配置我想改變的baseUrl在我Aloha.settings:Aloha編輯器集基址
(function (window, undefined) {
if (window.Aloha === undefined || window.Aloha === null) {
window.Aloha = {};
}
window.Aloha.settings = {
baseUrl: '/src/lib/',
plugins: {
load: ['common/ui', ' common/format', 'common/image', 'extra/ribbon', 'custom/color', 'custom/imageUpload']
}
};
})(window);
的的baseUrl設置爲/ src目錄/ lib中/這是aloha.js文件是原來在的位置,所以所有路徑都應該從中計算出來。
但是現在我得到以下錯誤:
0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'extendObjects'
,並沒有任何文件被加載。有任何想法嗎?
問候, 斯特凡