您的位置:首页 > 编程语言

测试插入代码

2015-09-09 12:21 323 查看
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);
}
}

                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: