1
0
mirror of https://github.com/nextcloud/ocsms.git synced 2026-08-19 04:13:01 +00:00

Rename application to 'Phone Sync'

Also update copyright years on modified files
This fixes #132
This commit is contained in:
Loic Blot
2017-01-03 12:54:38 +01:00
parent 8296cdca78
commit 9d8702d3bb
19 changed files with 40 additions and 41 deletions
+5 -5
View File
@@ -1,11 +1,11 @@
/**
* ownCloud - ocsms
* NextCloud - Phone Sync
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Loic Blot <loic.blot@unix-experience.fr>
* @copyright Loic Blot 2014-2016
* @copyright Loic Blot 2014-2017
*/
@@ -50,7 +50,7 @@ app.directive('toInt', function() {
};
});
// Imported from ownCloud contact app
// Imported from contact app
app.filter('peerColor', function() {
return function(input) {
if (typeof input == 'undefined') {
@@ -484,7 +484,7 @@ app.controller('OcSmsController', ['$scope', '$interval', '$timeout', '$compile'
return;
}
else if (Notification.permission === "granted") {
new Notification("ownCloud SMS - " + msg);
new Notification("Phone Sync - " + msg);
}
else if (Notification.permission !== 'denied') {
Notification.requestPermission(function (permission) {
@@ -492,7 +492,7 @@ app.controller('OcSmsController', ['$scope', '$interval', '$timeout', '$compile'
Notification.permission = permission;
}
if (permission === "granted") {
new Notification("ownCloud SMS - " + msg);
new Notification("Phone Sync - " + msg);
}
});
}