這個問題原本在 http://stackoverflow.com/questions/7034187/change-tinymce-default-image-dimension 提出,當時 Plone 4.0.7 環境按照回答去改,並沒有成功,後來 Plone 4.1.3 環境有成功。暫時懷疑是 Products.TinyMCE 有更動,有空再比對了。
不過,還有另一種處理途徑,是修改 Products/TinyMCE/skins/tinymce/plugins/ploneimage/js/ploneimage.js 的內容,把
if (nd.value == dimension) { nd.selected = true; }
改成
if (dimension != '' && nd.value == dimension) { nd.selected = true; } if (dimension == '' && nd.value == '@@images/image/preview') { nd.selected = true; }
No comments:
Post a Comment