Telegram Web, preconfigured for usage in I2P.
http://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.4 KiB
69 lines
2.4 KiB
/*! |
|
* Webogram v0.0.16 - messaging web application for MTProto |
|
* https://github.com/zhukov/webogram |
|
* Copyright (C) 2014 Igor Zhukov <igor.beatle@gmail.com> |
|
* https://github.com/zhukov/webogram/blob/master/LICENSE |
|
*/ |
|
|
|
'use strict'; |
|
|
|
window._testMode = location.search.indexOf('test=1') > 0; |
|
window._debugMode = location.search.indexOf('debug=1') > 0; |
|
window._osX = (navigator.platform || '').toLowerCase().indexOf('mac') != -1 || |
|
(navigator.userAgent || '').toLowerCase().indexOf('mac') != -1; |
|
window._retina = window.devicePixelRatio > 1; |
|
|
|
if (!window._osX) { |
|
$('body').addClass('non_osx'); |
|
} |
|
$('body').addClass(window._retina ? 'is_2x' : 'is_1x'); |
|
|
|
$(window).on('load', function () { |
|
setTimeout(function () { |
|
window.scrollTo(0,1); |
|
}, 0); |
|
}); |
|
|
|
// Declare app level module which depends on filters, and services |
|
angular.module('myApp', [ |
|
'ngRoute', |
|
'ngAnimate', |
|
'ngSanitize', |
|
'ui.bootstrap', |
|
'myApp.filters', |
|
'myApp.services', |
|
'mtproto.services', |
|
'myApp.directives', |
|
'myApp.controllers' |
|
]). |
|
config(['$locationProvider', '$routeProvider', '$compileProvider', function($locationProvider, $routeProvider, $compileProvider) { |
|
|
|
var icons = {}, reverseIcons = {}, i, j, hex, name, dataItem, |
|
ranges = [[0x1f600, 0x1f637], [0x261d, 0x263f], [0x270a, 0x270c], [0x1f446, 0x1f450]]; |
|
|
|
for (j in ranges) { |
|
for (i = ranges[j][0]; i <= ranges[j][1]; i++) { |
|
hex = i.toString(16); |
|
if (dataItem = Config.Emoji[hex]) { |
|
name = dataItem[1][0]; |
|
icons[':' + name + ':'] = hex + '.png'; |
|
reverseIcons[name] = dataItem[0]; |
|
} |
|
} |
|
} |
|
|
|
$.emojiarea.path = 'vendor/gemoji/images'; |
|
$.emojiarea.icons = icons; |
|
$.emojiarea.reverseIcons = reverseIcons; |
|
|
|
$compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|file|blob|filesystem|chrome-extension|app):|data:image\//); |
|
$compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|file|mailto|blob|filesystem|chrome-extension|app):|data:image\//); |
|
|
|
|
|
// $locationProvider.html5Mode(true); |
|
$routeProvider.when('/', {templateUrl: 'partials/welcome.html?4', controller: 'AppWelcomeController'}); |
|
$routeProvider.when('/login', {templateUrl: 'partials/login.html?5', controller: 'AppLoginController'}); |
|
$routeProvider.when('/im', {templateUrl: 'partials/im.html?13', controller: 'AppIMController', reloadOnSearch: false}); |
|
$routeProvider.otherwise({redirectTo: '/'}); |
|
|
|
}]);
|
|
|