/**
 * 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;
});