1234567891011121314151617181920212223 |
- /**
- * Created by shunchen_yang on 16/10/25.
- */
- UE.registerUI('xiumi', function (editor, uiName) {
- var btn = new UE.ui.Button({
- name : 'xiumi-connect',
- title : '秀米',
- onclick: function () {
- var dialog = new UE.ui.Dialog({
- iframeUrl: '/statics/plugins/neditor/dialogs/xiumi/xiumi-ue-dialog-v5.html',
- editor : editor,
- name : 'xiumi-connect',
- title : "秀米图文消息助手",
- cssRules : "width: " + (window.innerWidth - 60) + "px;" + "height: " + (window.innerHeight - 60) + "px;",
- });
- dialog.render();
- dialog.open();
- }
- });
- return btn;
- });
|