Browse Source

merged with master

gh-pages
Igor Zhukov 11 years ago
parent
commit
18530440ef
  1. 4
      app.manifest
  2. 2
      index.html
  3. 2
      js/services.js
  4. 2
      js/templates.js

4
app.manifest

@ -0,0 +1,4 @@
CACHE MANIFEST
NETWORK:
*

2
index.html

@ -1,5 +1,5 @@
<!doctype html>
<html lang="en" ng-app="myApp"><!-- ng-csp="" -->
<html lang="en" ng-app="myApp" manifest="app.manifest"><!-- ng-csp="" -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">

2
js/services.js

@ -1491,7 +1491,7 @@ angular.module('myApp.services', [])
notification.image = notificationPhoto.placeholder;
notification.key = 'msg' + message.id;
if (notificationPhoto.location) {
if (notificationPhoto.location && !notificationPhoto.location.empty) {
MtpApiFileManager.downloadSmallFile(notificationPhoto.location, notificationPhoto.size).then(function (url) {
notification.image = url;

2
js/templates.js

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save