Posts by cbfranca • 71 points
7 posts
-
0
votes1
answer74
viewsQ: Gulp-rev-all replacing the dom-module id
I am trying to versioning the Assets from my Polymer web app using Gulp-rev-all. However, Gulp-rev-all is replacing and adding hash also in the dom-module id. Ex: <dom-module…
-
0
votes1
answer32
viewsA: Pass and declare parameter (matrix) in Polymer
Why not use an object array? Ex: Polymer({ is: 'hello', properties: { users: Array }, ready: function() { this.users = [ {id: 1, nome: 'Mateus', idade: 16}, {id: 2, nome: 'Cristian', idade: 16},…
-
0
votes1
answer408
viewsQ: DTO - Interface x Class
I have used Interface to create DTO (Data Transfer Objects), "dumb" objects that only serve to standardize the communication of objects between the front and back. My question is this: Is actually…
-
2
votes1
answer65
viewsA: Modify Httpcontext.Current.User is breaking the Bundle Optimization
The problem was that the SessionManager.GetCurrentUser( Request ); this null and when assigning to HttpContext.Current.User Bundle generated an exception.
-
2
votes1
answer65
viewsQ: Modify Httpcontext.Current.User is breaking the Bundle Optimization
I did several tests and I could see that by modifying the HttpContext.Current.User Application_PostAuthenticateRequest (Global.asax.Cs) I get an Internal Server Error in the concatenated/minified…
-
0
votes2
answers85
viewsA: How do I use the Symbol tag instead of the g tag in Iron-iconset-svg?
The use of the tag <symbol> requires reuse of the icon using the tag <use>. Thus, in the current version of iron-iconset-svg works only with the use of the tag <g>.…
-
3
votes2
answers85
viewsQ: How do I use the Symbol tag instead of the g tag in Iron-iconset-svg?
I am trying to define an Iron-iconset-svg using the icons with the Symbol tag instead of using the g tag and the icon is not rendered. In all documentation and references on the internet the SVG is…