Tyler Frankenstein

Results 188 comments of Tyler Frankenstein

I am also experiencing this issue and agree with the assessment from @skosito . Here's a _cheap_ workaround that I use just before calling **destroy()**: ``` if (!myHeadroom.scrollTracker) { myHeadroom.scrollTracker...

Is this for jDrupal 8 or 7?

If I had to guess maybe JavaScript's `Promise` isn't supported in iOS 9. Nevertheless, you *should* be able to put an alert at the top of jdrupal.js (or jdrupal.min.js) and...

@stsier Have you by chance located a working example in Drupal 8.4.4+ with the Language module on what a successful PUT/PATCH request/response should look like? Also, what does the JSON...

@stsier Thank you for the follow up. This could be an issue with Drupal 8 core... have you raised this issue anywhere on drupal.org ?

@stsier This sounds like a Drupal Core REST issue/support-request, I'd search through the core's REST issue queue looking for stuff about language codes and user entities. If you can find/file...

Looks like he is using D8 there. I think there is now a problem this module alongside Drupal 8.2, I believe the login mechanism has changed: https://www.drupal.org/documentation/modules/rest/javascript#comment-11731955 So I think...

@webdobe Last week I updated jDrupal to work properly with D8.2.*, so I think if you just download the latest jdrupal.min.js and include it in your index.html file, then angular-drupal...

@webdobe Please provide more context from your Network and/or Console tabs to show the request/response in more detail. We're looking for headers/payloads/status-codes/responses/etc.

@webdobe This is how logout is working for me in jDrupal 8: ``` GET: http://example.com/user/logout Status Code: 302 Found ``` There are no tokens needed in the header AFAIK (since...