cloudcmd/lib/client/contact.js
2015-03-16 11:03:24 -04:00

58 lines
1.5 KiB
JavaScript

var CloudCmd, Util, DOM, olark;
(function(CloudCmd, Util, DOM) {
'use strict';
CloudCmd.Contact = ContactProto;
function ContactProto(callback) {
var Contact = this,
Images = DOM.Images,
Key = CloudCmd.Key,
Inited = false,
DIR = CloudCmd.LIBDIRCLIENT;
function init(callback) {
if (!Inited) {
Contact.show = show;
Contact.hide = hide;
load(function() {
Inited = true;
olark('api.box.onExpand', Contact.show);
olark('api.box.onShow', Contact.show);
olark('api.box.onHide', Contact.hide);
olark('api.box.onShrink', Contact.hide);
Util.exec(callback);
});
}
}
function load(callback) {
var path = DIR + 'contact/olark.js';
Images.show.load('top');
DOM.load.js(path, callback);
}
function show() {
Key.unsetBind();
Images.hide();
if (Inited)
olark('api.box.expand');
else
init(Contact.show);
}
function hide() {
Key.setBind();
}
init(callback);
}
})(CloudCmd, Util, DOM);