[ADF-2010] Move/copy, when searching for folder multiple results are returned (#2727)

* adding debounce time in object picker
unify search api
fix multiples duplicate result
remove limit of 4 character to search

* remove three.min.js

* remove unused import

* tlsint fix and remove file

* rename sitesApiService to sitesService as all the other services

* fix test timeout async
This commit is contained in:
Eugenio Romano
2017-11-26 22:06:05 +00:00
committed by GitHub
parent 4549dbf1f5
commit 197fab4da8
23 changed files with 380 additions and 323 deletions

View File

@@ -65,8 +65,7 @@
"../node_modules/pdfjs-dist/build/pdf.js",
"../node_modules/pdfjs-dist/web/pdf_viewer.js",
"../node_modules/raphael/raphael.min.js",
"../node_modules/moment/min/moment.min.js",
"../node_modules/three/build/three.min.js"
"../node_modules/moment/min/moment.min.js"
],
"environmentSource": "environments/environment.ts",
"environments": {
@@ -149,8 +148,7 @@
"../node_modules/pdfjs-dist/build/pdf.js",
"../node_modules/pdfjs-dist/web/pdf_viewer.js",
"../node_modules/raphael/raphael.min.js",
"../node_modules/moment/min/moment.min.js",
"../node_modules/three/build/three.min.js"
"../node_modules/moment/min/moment.min.js"
],
"environmentSource": "environments/environment.ts",
"environments": {

View File

@@ -87,7 +87,6 @@
"minimatch": "3.0.4",
"moment-es6": "^1.0.0",
"moment": "2.15.2",
"ng2-3d-editor": "0.0.18",
"ng2-charts": "1.6.0",
"pdfjs-dist": "1.5.404",
"raphael": "2.2.7",

View File

@@ -4,7 +4,7 @@
$toolbarHeight: 64px;
@media screen and ($mat-small) {
@media screen and ($mat-xsmall) {
adf-search-bar {
width: 150px;
}

View File

@@ -6,8 +6,6 @@ import { environment } from './environments/environment';
import 'hammerjs';
import 'chart.js';
import 'ng2-charts';
// import 'ng2-3d-editor';
import 'three';
import pdfjsLib from 'pdfjs-dist';
pdfjsLib.PDFJS.workerSrc = 'pdf.worker.js';