/*! * Webogram v0.2.9 - messaging web application for MTProto * https://github.com/zhukov/webogram * Copyright (C) 2014 Igor Zhukov * https://github.com/zhukov/webogram/blob/master/LICENSE */ var _logTimer = (new Date()).getTime(); function dT () { return '[' + (((new Date()).getTime() - _logTimer) / 1000).toFixed(3) + ']'; } function checkClick (e, noprevent) { if (e.which == 1 && (e.ctrlKey || e.metaKey) || e.which == 2) { return true; } if (!noprevent) { e.preventDefault(); } return false; } function checkDragEvent(e) { if (!e || e.target && (e.target.tagName == 'IMG' || e.target.tagName == 'A')) return false; if (e.dataTransfer && e.dataTransfer.types) { for (var i = 0; i < e.dataTransfer.types.length; i++) { if (e.dataTransfer.types[i] == 'Files') { return true; } } } else { return true; } return false; } function cancelEvent (event) { event = event || window.event; if (event) event = event.originalEvent || event; if (event.stopPropagation) event.stopPropagation(); if (event.preventDefault) event.preventDefault(); return false; } function onCtrlEnter (textarea, cb) { $(textarea).on('keydown', function (e) { if (e.keyCode == 13 && (e.ctrlKey || e.metaKey)) { cb(); return cancelEvent(e); } }); } function onContentLoaded (cb) { setTimeout(cb, 0); }; function tsNow (seconds) { var t = +new Date(); return seconds ? Math.floor(t / 1000) : t; } function safeReplaceObject (wasObject, newObject) { for (var key in wasObject) { if (!newObject.hasOwnProperty(key) && key.charAt(0) != '$') { delete wasObject[key]; } } for (var key in newObject) { if (newObject.hasOwnProperty(key)) { wasObject[key] = newObject[key]; } } } function listMergeSorted (list1, list2) { list1 = list1 || []; list2 = list2 || []; var result = angular.copy(list1); var minID = list1.length ? list1[list1.length - 1] : 0xFFFFFFFF; for (var i = 0; i < list2.length; i++) { if (list2[i] < minID) { result.push(list2[i]); } } return result; } function listUniqSorted (list) { list = list || []; var resultList = [], prev = false; for (var i = 0; i < list.length; i++) { if (list[i] !== prev) { resultList.push(list[i]) } prev = list[i]; } return resultList; } // Bind polyfill from MDN if (!Function.prototype.bind) { Function.prototype.bind = function (oThis) { if (typeof this !== "function") { // closest thing possible to the ECMAScript 5 // internal IsCallable function throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); } var aArgs = Array.prototype.slice.call(arguments, 1), fToBind = this, fNOP = function () {}, fBound = function () { return fToBind.apply(this instanceof fNOP && oThis ? this : oThis, aArgs.concat(Array.prototype.slice.call(arguments))); }; fNOP.prototype = this.prototype; fBound.prototype = new fNOP(); return fBound; }; }