Can someone please explain to me what is the issue here. When I am commenting simple code of switch it stops coming. Otherwise, it coming every time and crashing my android app.
<Switch checked="{{globalShare}}" (checkedChange)="toggleGlobalShare($event)" offBackgroundColor="#F08080" class="switch" horizontalAlignment="center"></Switch>
Try removing offBackgroundColor="#F08080" - I had the same & found this by a process of elimination. I have no explanation why it worked I'm afraid.
Related
we are working on flatsome. the image alignment is not proper. Whenever I deactivate wp-rocket plugin, images fixes itself up.
I am not able to understand what is the causing this issue.
Are you getting any errors in the console? Also, are you using the "Delay JavaScript Execution" feature in the wp-rocket plugin? If yes, then check the wp-rocket article
https://docs.wp-rocket.me/article/1560-delay-javascript-execution-compatibility-exclusions#plugins, It may help you to resolve this issue.
I have recently upgraded TinyMCE to the latest version and the editor itself loads almost immediately. The issue I'm having is that the placeholder value takes up to 3-4 seconds to appear. I using the latest tinymce-django version and have gone through all of the docs and can't find a way to speed up the appearance of the placeholder. Has anyone else encountered this issue? I've attempted to turn on the compressor but it doesn't seem to make a difference. Because the interface loads right away it's hard for me to tell if the compressor is in fact turned on and if it's working.
So it seems to never fail....but after posting this question...I played with my init file....as it was giving me an error in the developer console....
I would up commenting out the line that was trying to reference my CSS file in the init and this seemed to speed up the load time even more. Now the placeholder loads instantly...This is the line that I commented out...
content_css: [
'//assets/css/mystyle.css'],
I don't appear to need this setting for now based on how I've used the source files to change my config appearance. I had an extra slash in front of the library and that seemed to be what was causing the placeholder load time delay. On to the next....
I am executing my protractor code on MAC OS system and using Chrome. Everything works but not drag and drop event.
The code is working fine if I put my actual mouse position on the target of drop. But if the actual mouse position is not at the target location, its not performing the action.
The code I am using is as:
browser.actions().dragAndDrop(source,target).perform();
I have also tried this :
browser.actions().mouseDown(source).mouseMove(target).mouseUp().perform();
Use html-dnd NPM module.
Link:https://www.npmjs.com/package/html-dnd
code snippet:
var dragAndDrop = require('html-dnd').code;
var draggable = driver.findElement(By.id('draggable'));
var droppable = driver.findElement(By.id('droppable'));
driver.executeScript(dragAndDrop, draggable, droppable);
for this :
browser.actions().dragAndDrop(source,target).perform();
try this :
browser.actions().mouseMove(source).mouseDown().mouseMove(target).mouseUp().perform();
Note that dragAndDrop is nothing but mouseMove + mouseDown + mouseMove + mouseUp
Chances are you're in a long line of people who have problems with the drag and drop functionality implemented with html5. This has been a problem area to work around using Selenium webdriver.
Please see that the issue might be due to an age old bug that was filed for ChromeDriver.
The bug has a lot of discussion that may be helpful in understanding the real issue and there are also a lot of solutions mentioned in the comments below - however there has not been a fool-proof or 100% working solution to this problem.
This bug has been mentioned in Protractor github issues a lot of times like here, here, here,and here and in Selenium GitHub in the archived issues here.
One of the solutions you can try is this helper method that was created here. However this is not a guaranteed solution, but I would suggest you to give it a try. The original issue mentioned for Protractor here also has many other solutions mentioned which you can try. You can also try this helper method.
Also, please see that the same question has been posted multiple times here, here, here, here.
ydn.db-isw-core-e-cur-qry-dev-raw.js v1.0.2 crashed at the string 28537
In logs I read:
AbortError
request = index.openKeyCursor(key_range, this.dir);
It crashed in latest Firefox, but works with other browsers.
I can't find the reason of this error. Sometimes, when I try to debug it by stepping into function, it works without crashing.
What is causing this bug?
So, when I try to call history.replaceState() in callback of db.put() it causes a page reload. Why? How can I prevent that?
See debug log by ydn.debug.log ('ydn.db', 'finest')
So... I didn't find any reason, but placing history.replaceState() in setTimeout() make it work in FireFox. Maybe there are some problems with context... but it works in other browsers. So, I think that it is very strange bug of firefox.
I'm struggling on my website which worked well since the shareaholic widget install. I've tried to remove it but the bug remains.
A picture is worth thousand words so it's about : www.mywebshop.org, we can't scroll anymore on the website and I must admit I've never seen that bug (except when using fixed position ;-)).
I'm totally stuck... no cache is active, I can't see anything out of the ordinary... I'm having this issue on every browser on my mac.
Any clues?
Thank in advance ;-)
hey there I have seen your site. Please remove the overflow-y:hidden; from the body selector in the style.css file on line number:2793
That should do it