Fixed photo forward search peer
This commit is contained in:
parent
6abdaf198b
commit
2249b80ea5
@ -349,6 +349,9 @@ angular.module('myApp.controllers', [])
|
|||||||
if ($scope.search === undefined) {
|
if ($scope.search === undefined) {
|
||||||
$scope.search = {};
|
$scope.search = {};
|
||||||
}
|
}
|
||||||
|
if ($scope.isEmpty === undefined) {
|
||||||
|
$scope.isEmpty = {};
|
||||||
|
}
|
||||||
$scope.phonebookAvailable = PhonebookContactsService.isAvailable();
|
$scope.phonebookAvailable = PhonebookContactsService.isAvailable();
|
||||||
|
|
||||||
var offset = 0,
|
var offset = 0,
|
||||||
|
@ -1348,7 +1348,7 @@ angular.module('myApp.directives', ['myApp.filters'])
|
|||||||
var onKeyDown = function (event) {
|
var onKeyDown = function (event) {
|
||||||
var target = event.target;
|
var target = event.target;
|
||||||
if (target && (target.tagName == 'INPUT' || target.tagName == 'TEXTAREA')) {
|
if (target && (target.tagName == 'INPUT' || target.tagName == 'TEXTAREA')) {
|
||||||
return false;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (event.keyCode) {
|
switch (event.keyCode) {
|
||||||
|
Loading…
Reference in New Issue
Block a user