Skip to content
This repository was archived by the owner on Oct 25, 2023. It is now read-only.

Commit aae0c67

Browse files
committed
Merge branch 'master' of https://github.com/zhukov/webogram
2 parents 99211f1 + e8ffaea commit aae0c67

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

app/badbrowser.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h2>Your browser is outdated!</h2>
2828
</p>
2929
<p>
3030
Unfortunately, your current browser doesn't support HTML5.<br/>
31-
Please download a modern browser and come back soon!
31+
Please download a modern browser or update to latest version and come back soon!
3232
</p>
3333
</div>
3434

app/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,12 @@
3535

3636
<meta property="og:title" content="Telegram Web">
3737
<meta property="og:url" content="https://web.telegram.org/">
38+
<meta property="og:image:width" content="236">
39+
<meta property="og:image:height" content="236">
3840
<meta property="og:image" content="https://web.telegram.org/img/logo_share.png">
3941
<meta property="og:site_name" content="Telegram Web">
4042
<meta property="description" content="Welcome to the Web application of Telegram messenger. See https://github.com/zhukov/webogram for more info.">
4143
<meta property="og:description" content="Welcome to the Web application of Telegram messenger. See https://github.com/zhukov/webogram for more info.">
42-
4344
</head>
4445
<body>
4546

app/js/controllers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ angular.module('myApp.controllers', ['myApp.i18n'])
177177
var badPhone = !fullPhone.match(/^[\d\-+\s]+$/)
178178
if (!badPhone) {
179179
fullPhone = fullPhone.replace(/\D/g, '')
180-
if (fullPhone.length < 7) {
180+
if (fullPhone.length < 7 || fullPhone.length > 15) {
181181
badPhone = true
182182
}
183183
}

app/less/app.less

+1
Original file line numberDiff line numberDiff line change
@@ -2421,6 +2421,7 @@ a.im_message_fwd_photo {
24212421
.reply_markup_button_wrap {
24222422
display: inline-block;
24232423
padding: 0 4px;
2424+
vertical-align: bottom;
24242425
}
24252426
.reply_markup_button {
24262427
color: #3a6d99;

app/manifest.webapp.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"display": "standalone",
66
"theme_color": "#497495",
77
"gcm_sender_id": "122867383838",
8-
"start_url": "./?utm_source=web_app_manifest",
8+
"start_url": "./",
99
"scope": "/",
1010
"background_color": "#fff",
1111
"icons": [

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)