Posts by Diego Heusser • 68 points
3 posts
- 
		1 votes3 answers952 viewsA: Change color of the Sidemenu iconIn the file variables.scss you set the color: $colors: ( primary: #3e66ab, secondary: #32db64, danger: #dd303e, light: #edeff2, dark: #333333 ); And in the ion-icon tag you assign the color:… ionicanswered Diego Heusser 68
- 
		4 votes3 answers527 viewsA: if with console.log condition?The function console.log() serves to show something in the browser console. Make your condition without the.log console that should work, that way: if(ev.target.tagName == 'DIV')} alert("O log… javascriptanswered Diego Heusser 68
- 
		0 votes2 answers207 viewsQ: Show a dialog with jQuery?I have the following html: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">…