// Solution from Here : https://forum.ionicframework.com/t/iframe-reloads-after-show-keyboard/83978/4
Problem: every time i press the input, the iframe refreshs...
Solution:
- replace function call with a variable
example :
// Solution from Here : https://forum.ionicframework.com/t/iframe-reloads-after-show-keyboard/83978/4
Problem: every time i press the input, the iframe refreshs...
Solution:
example :
import { NgModule, ErrorHandler } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
import { MyApp } from './app.component';
import { AboutPage } from '../pages/about/about';
import { ContactPage } from '../pages/contact/contact';
| /** By Adem Kouki | |
| /** Facebook : https://facebook.com/Ademkouki.Officiel | |
| /** GitHub : https://github.com/Ademking | |
| /** | |
| /** LinkedIn Auto Liker - This tool will help you to increase your Linkedin Popularity ... | |
| /** | |
| */ | |
| (function() { | |
| console.log('By Adem Kouki : https://facebook.com/Ademkouki.Officiel'); | |
| let index = 0; |
ion-icon {
&[class*="appname-"] {
mask-size: contain;
mask-position: 50% 50%;
mask-repeat: no-repeat;
background: currentColor;
width: 1em;
| #include <iostream> | |
| #include <cstdlib> | |
| #include <time.h> | |
| #include <ctime> | |
| using namespace std; | |
| void shuffle(char [][4]); | |
| void cls(); | |
| void sleepcp(int milliseconds); |
| // replace special chars like é è à ù ... | |
| function replace_special_char(text){ | |
| return text.toLowerCase().replace(/à|á|ạ|ả|ã|â|ầ|ấ|ậ|ẩ|ẫ|ă|ằ|ắ|ặ|ẳ|ẵ/g, "a").replace(/è|é|ẹ|ẻ|ẽ|ê|ề|ế|ệ|ể|ễ/g, "e").replace(/ì|í|ị|ỉ|ĩ/g, "i").replace(/ò|ó|ọ|ỏ|õ|ô|ồ|ố|ộ|ổ|ỗ|ơ|ờ|ớ|ợ|ở|ỡ/g, "o").replace(/ù|ú|ụ|ủ|ũ|ư|ừ|ứ|ự|ử|ữ/g, "u").replace(/ỳ|ý|ỵ|ỷ|ỹ/g, "y").replace(/đ/g, "d"); | |
| } |
This will fix Cmder Here For - For Windows
Steps:
Open Cmdr -> WIN + ALT + P
Create new Predefined task (Click on + button)
• Name: bash
| // run in Dev console | |
| // To catch specific events: /^on(key|mouse)/.test(key) | |
| Object.keys(window).forEach(key => { | |
| if (/^on/.test(key)) { | |
| window.addEventListener(key.slice(2), event => { | |
| console.log(event); | |
| }); | |
| } |
Don't use -f flag !!!!
Found it Here
ng config schematics.@schematics/angular:component.styleext scss
"src/styles.css"
to