测试插入代码

来源:互联网 发布:深圳网络教育报名 编辑:程序博客网 时间:2024/06/11 01:41
function WizTodoAndroidHelper() {this.getUserAlias = getUserAlias;this.getUserAvatarFileName = getUserAvatarFileName;this.isPersonalDocument = isPersonalDocument;this.getLocalDateTime = getLocalDateTime;this.setDocumentModified = setDocumentModified;this.getCheckedImageFileName = getCheckedImageFileName;this.getUnCheckedImageFileName = getUnCheckedImageFileName;this.initCss = initCss;this.canEdit = canEdit;this.setDocumentType = setDocumentType;this.canInsert = canInsert;function getUserAlias() {return window.WizNote.getUserAlias();}function getUserAvatarFileName(size) {return window.WizNote.getUserAvatarFileName(size);}function isPersonalDocument() {return window.WizNote.isPersonalDocument();}function getLocalDateTime(dt) {return window.WizNote.getLocalDateTime(dt);}function setDocumentModified() {window.WizNote.setDocumentModified();}function getCheckedImageFileName() {return window.WizNote.getCheckedImageFileName();}function getUnCheckedImageFileName() {return window.WizNote.getUnCheckedImageFileName();}function canEdit() {return true;}function initCss(document) {initDefaultCss(document, document.head);}function setDocumentType(type) {window.WizNote.setDocumentType(type);}function canInsert(caninsert) {window.WizNote.canInsert(caninsert);}}

0 0