dcrousset

Results 7 comments of dcrousset

Hey @hthetiot #597 seems to be another problem. In our situation, we have an argument within our name tag, like this : `long name` Thanks.

I have the same problem. did you found a workaround ? Thx

Do this before or after your datepicker initialization : `$('input').datepicker.dates..today = 'new text';` As an example : `$('input').datepicker.dates.en.today = 'Current month';` Be aware that this change is global for all...

Had the same problem. Ended by adding this in my config.xml (cordova 9+) : ... ... ...

Sorry, this should be 2 differents pullrequests, but I don't know how to split these two new features.

If you try the url without an https: in an cordova app, you will have the trouble because it uses by default 'file://' instead of 'https://' when no protocol is...

While waiting for a fix, here is a workaround that doesn't break the restart policy ``` PID=$(docker inspect -f "{{.State.Pid}}" ) kill -SIGHUP $PID ``` Enjoy :o)