Added grunt minifyer

This commit is contained in:
Kevin Jahns
2014-08-05 17:04:39 +02:00
parent 7660771cea
commit c1194a49ea
81 changed files with 2644 additions and 2406 deletions

View File

@@ -5,16 +5,14 @@ createIwcConnector = function(callback) {
var IwcConnector, duiClient, get_root_intent, init, iwcHandler, received_HB, root_element;
iwcHandler = {};
duiClient = new DUIClient();
duiClient.connect((function(_this) {
return function(intent) {
var _ref;
return (_ref = iwcHandler[intent.action]) != null ? _ref.map(function(f) {
return setTimeout(function() {
return f(intent);
}, 0);
}) : void 0;
};
})(this));
duiClient.connect(function(intent) {
var _ref;
return (_ref = iwcHandler[intent.action]) != null ? _ref.map(function(f) {
return setTimeout(function() {
return f(intent);
}, 0);
}) : void 0;
});
duiClient.initOK();
root_element = null;
received_HB = null;

File diff suppressed because one or more lines are too long