Posts by Leonardo Mendonça • 11 points
2 posts
-
1
votes1
answer314
viewsA: How to change the theme of Dashboard nebular NGX-Admin?
theme.modules.ts, in the block: const NB_THEME_PROVIDERS = [ ...NbThemeModule.forRoot( { name: '**default | cosmic**', }, [DEFAULT_THEME, COSMIC_THEME], ).providers,…
-
0
votes1
answer280
viewsA: Force open Facebook/Twitter/Google in browser
Try this, HTML: <div id="teste" data-href="http://www.google.com">Google</div> Javascript: document.getElementById("teste").addEventListener("click", function(evt) { var a =…