Skip to content

Instantly share code, notes, and snippets.

View jsbimra's full-sized avatar
💭
Smile till you die! even after!

Jatinder Singh jsbimra

💭
Smile till you die! even after!
  • India
View GitHub Profile
@jsbimra
jsbimra / Solution to common issues
Created March 2, 2019 10:09
These are the random solution to the issues I have faced while developing the application in front-end and these are my hand tools to fix issues and refer anytime in need. Hope it helps you in your search for solutions. Will keep updating with more and were need of improvement required to this page.
*********************************************************************
ANGULAR - To use on CLI
*********************************************************************
//to run server with proxy file optionally can be set under angular.json > server > options >
ng serve --proxy-config proxy.config.json
//if need to add port optionally
ng serve --proxy-config proxy.config.json --port 9999
@jsbimra
jsbimra / index.html
Created February 14, 2018 19:11 — forked from anonymous/index.html
SKype SanGat Gurbani - Iframe Scroll
<div id="parent-container">
<input type="text" id="txtGurbaniURL" value="
http://sttm.co/s/3504" />
<input type="button" id="btnLoadURL" value="Load Page" />
<div style="clear:both"></div>
<iframe name="ssGurbaniIframe" id="ssGurbaniIframe" src="" width="468" height="300"></iframe>
@jsbimra
jsbimra / sencha-webdb-example.js
Created October 5, 2012 09:08 — forked from tuxcanfly/sencha-webdb-example.js
Sencha touch proxy for web database: Example
Ext.regModel('Person', {
fields: [
{name: 'name', type: 'string'},
{name: 'age', type: 'int'},
{name: 'phone', type: 'string'},
{name: 'alive', type: 'boolean', defaultValue: true}
],
proxy: {
type: 'websqlproxy',