Wooody82

Results 16 comments of Wooody82

Hi, I have made some changes for latest Bootstrap 4.0.0 [responsive-tabs.js.zip](https://github.com/openam/bootstrap-responsive-tabs/files/1725888/responsive-tabs.js.zip) And used this to show and hide between sm and md. ` (function($) { fakewaffle.responsiveTabs(['sm','md']); })(jQuery);`

Hi @alghraibeh , I tried another way. To get the width and height for the element when the page is resized. ``` data = $this.data('animateSprite'), row = Math.floor(frameNumber / data.settings.columns),...

Hi, Thank you for your answer. Its working fine on https://patricktran.github.io/react-magic-slider-dots/ , I think because you have one slide on all sizes. no breakpoint there. ( setting in slick slide)...

Try for the v-hl-container `flex-direction: row-reverse;`

Hi, I have fixed it by doing some changes in the code. and I noticed the prev has issue when its moving back and fixed it as well. So here...

Thanks @painor I use require not import.. so this does not work with me! `const { Button, TelegramClient } = require("telegram");`

Thanks.. I required that.. But the button not showing anyway.. I am not sure why! ``` const { Button } = require("telegram/tl/custom/button"); const markup = client.buildReplyMarkup(Button.inline("Hello!")); await client.sendMessage(chat, { message:...

I have apiId and apiHash created from app page. and I use my account to login and save session. ``` await client.start({ phoneNumber: async () => await input.text("number?"), password: async...

Thanks works fine with Bot account :-) ``` await client.start({ botAuthToken: "", }); ``` https://github.com/gram-js/gramjs/blob/master/examples/main.ts#L40