Fixed double scroll in catalog

This commit is contained in:
Zakary Timson 2019-03-24 11:13:20 -04:00
parent 45a1ff9245
commit 58e853e7b7
5 changed files with 110 additions and 95 deletions

View File

@ -1,4 +1,4 @@
<div [ngClass]="{lock: lock, unlock: !lock}">
<nav class="navbar navbar-expand-lg fixed-top navbar-light bg-light">
<div class="container">
<a class="navbar-brand roboto" [routerLink]="['/']">
@ -93,3 +93,4 @@
</div>
</div>
</footer>
</div>

View File

@ -18,6 +18,10 @@ export class AppComponent implements OnInit {
@LocalStorage({ defaultValue: [], encryptionKey: 'HmRoBFUEVWqW5uvy' })
cart: { id: string; item: string; option: POption, quantity: number}[];
set lock(lock: boolean) {
document.getElementsByTagName('body')[0].classList[lock ? 'add' : 'remove']('lock');
}
constructor(
private router: Router,
private dialog: MatDialog,

View File

@ -1 +1 @@
<iframe class="w-100 border-0" [src]="trust('https://screenprintingsuppliescanada.com')" style="height: 100vh"></iframe>
<iframe class="w-100 border-0" [src]="trust('https://screenprintingsuppliescanada.com')" style="height: calc(100vh - 56px)"></iframe>

View File

@ -1,16 +1,22 @@
import {Component, OnInit} from "@angular/core";
import {HttpClient} from "@angular/common/http";
import {Component, OnDestroy, OnInit} from "@angular/core";
import {DomSanitizer} from "@angular/platform-browser";
import {AppComponent} from "../app.component";
@Component({
selector: 'catalog',
templateUrl: 'catalog.component.html'
})
export class CatalogComponent implements OnInit{
export class CatalogComponent implements OnInit, OnDestroy {
constructor(private http: HttpClient, private sanatize: DomSanitizer) {}
constructor(private app: AppComponent, private sanitize: DomSanitizer) {}
ngOnInit() {}
trust(url) { return this.sanatize.bypassSecurityTrustResourceUrl(url); }
ngOnInit() {
this.app.lock = true;
}
ngOnDestroy() {
this.app.lock = false;
}
trust(url) { return this.sanitize.bypassSecurityTrustResourceUrl(url); }
}

View File

@ -24,6 +24,10 @@ body {
margin: 0;
padding: 0;
background-color: #292929;
&.lock {
overflow: hidden;
}
}
.button-fix {