1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-18 07:52:21 +01:00

fix scrutinizer errors

This commit is contained in:
babelouest 2014-04-10 13:51:52 -04:00
parent d88bb053b8
commit 78183bebf6
2 changed files with 11 additions and 10 deletions

View File

@ -106,9 +106,9 @@ OC.Contacts = OC.Contacts || {};
var addressbook = OC.Contacts.addressBooks;
var error=false;
var errorFields = new Array();
var errorFields = [];
$('[required]').each(function() {
if ($(this).val() == '' && !$(this).attr('disabled')){
if ($(this).val() === '' && !$(this).attr('disabled')){
error = true;
errorFields.push($(this).attr('placeholder'));
}
@ -172,9 +172,9 @@ OC.Contacts = OC.Contacts || {};
var defer = $.Deferred();
var error=false;
var errorFields = new Array();
var errorFields = [];
$('[required]').each(function() {
if ($(this).val() == '' && !$(this).attr('disabled')){
if ($(this).val() === '' && !$(this).attr('disabled')){
error = true;
errorFields.push($(this).attr('placeholder'));
}
@ -342,12 +342,12 @@ OC.Contacts = OC.Contacts || {};
// allow backspace, tab, delete, enter, arrows, numbers and keypad numbers ONLY
// home, end, period, and numpad decimal
return (
key == 8 ||
key == 9 ||
key == 13 ||
key == 46 ||
key == 110 ||
key == 190 ||
key === 8 ||
key === 9 ||
key === 13 ||
key === 46 ||
key === 110 ||
key === 190 ||
(key >= 35 && key <= 40) ||
(key >= 48 && key <= 57) ||
(key >= 96 && key <= 105));

View File

@ -74,6 +74,7 @@ class Dispatcher extends MainApp {
return new AddressBookController($this->appName, $request, $app);
});
$this->container->registerService('BackendController', function(IAppContainer $container) use($app) {
$request = $container->query('Request');
return new BackendController($container, $request, $app);
});
$this->container->registerService('GroupController', function(IAppContainer $container) use($app) {