mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-07 14:02:48 +00:00
fix: remove old console.log statements
This commit is contained in:
@@ -132,7 +132,6 @@ export class AddEventReviewModalComponent implements OnInit {
|
|||||||
),
|
),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
console.log((navigator as unknown as NewShareNavigator).canShare(shareData));
|
|
||||||
|
|
||||||
if (!(navigator as unknown as NewShareNavigator).canShare(shareData)) {
|
if (!(navigator as unknown as NewShareNavigator).canShare(shareData)) {
|
||||||
return Dialog.alert({
|
return Dialog.alert({
|
||||||
|
|||||||
@@ -65,7 +65,6 @@ export class CoordinatedSearchProvider {
|
|||||||
* 2. If not, waits a set amount of time for other requests to come in
|
* 2. If not, waits a set amount of time for other requests to come in
|
||||||
*/
|
*/
|
||||||
async coordinatedSearch(query: SCSearchRequest, latencyMs = 50): Promise<SCSearchResponse> {
|
async coordinatedSearch(query: SCSearchRequest, latencyMs = 50): Promise<SCSearchResponse> {
|
||||||
console.log('coordinatedSearch', query);
|
|
||||||
const ongoingQuery: OngoingQuery = {request: query};
|
const ongoingQuery: OngoingQuery = {request: query};
|
||||||
this.queue.push(ongoingQuery);
|
this.queue.push(ongoingQuery);
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,6 @@ export function searchPageSwitchAnimation(animationController: AnimationControll
|
|||||||
.create()
|
.create()
|
||||||
.fromTo('opacity', '1', '1')
|
.fromTo('opacity', '1', '1')
|
||||||
.addElement(options.leavingEl);
|
.addElement(options.leavingEl);
|
||||||
console.log(options.enteringEl.querySelector('stapps-data-list'));
|
|
||||||
const contentSlide = animationController
|
const contentSlide = animationController
|
||||||
.create()
|
.create()
|
||||||
.fromTo('transform', 'translateX(600px)', 'translateX(0px)')
|
.fromTo('transform', 'translateX(600px)', 'translateX(0px)')
|
||||||
|
|||||||
Reference in New Issue
Block a user