PG Herveou
PG Herveou
Hey there, thanks for this awesome module. Quick question, is it possible to specify additional/different tsconfig compiler options when building the production bundle. I would like to set the target...
Hello there I just noticed the following problem ``` javascript /* without underscore.string */ _([1, 2, 3]).splice(0, 1) // returns [2, 3] /* with underscore.string */ _([1, 2, 3]).splice(0, 1)...
Adding a catch statement, to the loadCache API to ensure that for example a GH API error does not take the server down
In electron environment require.main can be undefined. This make sure this function does not throw an Error
TJ I am using page click option to handle click event my links have data attributes ``` html my link ``` So would it make sense to add a reference...
I hard coded something like that in my local branch, to lock the scrolling when showing the ovelay Do you think this is an option we should expose to the...
I just tried this code from the demo page adding overlay caused the event to be fired twice Didn't check why yet, any idea ? ``` javascript new ui.Dialog({ title:...
Hi TJ express-expose define the following function to create a string representation of objects ``` javascript function string(obj) { if ('function' == typeof obj) { return obj.toString(); } else if...
When exposing mongoose model I have to explicitly call model._id.toString() to have the id correctly encoded in the client page otherwise it get encoded lilke that Do you have any...
Hello TJ what do you think about adding this line of code to the position helper, most of the time when I use fixed or absolute I fix the top/bottom...