ANUPAM KHOSLA

Results 15 issues of ANUPAM KHOSLA

Open this demo https://jsfiddle.net/51zm7ef8/1/ and then click on **Rent** dropdown. Now toggle between _Rent a office_ and _Popular locations_. In Firefox 92.0 and Edge on windows 10 you'd see the...

Have a look at the following demo: https://jsfiddle.net/qejvb51s/ Make the screen less than 485px so that the dropdown has to be pushed to the right. As you can see the...

If you want to open the dropdown on hover you'd do this: ``` $('.dropdown-button').dropdown({ coverTrigger: false, hover: true, // Activate on hover }); ``` Strangely, with this actvated, when you...

I jus cloned your repo https://github.com/mdbootstrap/material-design-for-bootstrap.git and put a navbar with a dropdown and noticed you need to use `data-toggle="dropdown"` instead of `data-mdb-toggle="dropdown"`. Is it a bug?

Same issue on stackoverflow I asked: http://stackoverflow.com/q/42763600/3429430 ______________________ As mention here http://flexslider.woothemes.com/dynamic-carousel-min-max.html the flex slider can take different number of thumbnails as per browser width on resizing. That is on...

### MDN URL https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises ### What specific section or headline is this issue about? Guarantees ### What information was incorrect, unhelpful, or incomplete? I am asking more of a question,...

Content:JS

### MDN URL https://developer.mozilla.org/en-US/docs/Web/API/Window/unhandledrejection_event ### What specific section or headline is this issue about? https://developer.mozilla.org/en-US/docs/Web/API/Window/unhandledrejection_event#basic_error_logging ### What information was incorrect, unhelpful, or incomplete? The `rejectionhandled` event doesn't always trigger. Have...

Content:WebAPI

### Summary I am using Ubuntu 22.04.3 LTS. I am using Java SE Development Kit 17.0.9, Android SDK Platform 33 and Android 13 (Tiramisu). I just initialized Expo's official repo:...

stale
CLI

https://basarat.gitbook.io/typescript/intro-1/jest Following is wrong: ``` test('basic',async () => { expect(sum()).toBe(0); }); test('basic again', async () => { expect(sum(1, 2)).toBe(3); }, 1000 /* optional timeout */); ``` You need await like:...