Broken content on initialization plugin
See original GitHub issueAfter initializing .step() on some element, his content will be broken if contains special replacing templates of replace() function: “$$”, “$&”, “$`”, “$'”, or"$n". For example, html of element
<value>^[0-9.,\s]*$</value>
will be changed to
<value>^[0-9.,\s]*{2}lt;/value>
Issue Analytics
- State:
- Created 6 years ago
- Comments:9
Top Results From Across the Web
Failed to initialize plugin: acfe_form - WordPress.org
Hello,. We recently updated ACFE from 8.6.6 to 8.6.7 and after doing so we found that updating it seems to have broken the...
Read more >Initialization and Destruction - Plugins
This chapter describes the methods that provide the basic processes of initialization, instance creation and destruction, and shutdown.
Read more >Xcode fails to start Loading a plug-in failed. - Apple Developer
stating that the plug-in or one of its prerequisite plug-ins may be missing or damaged and may need to be reinstalled.
Read more >5 Ways to Repair a Broken WordPress Installation
Disable all plugins and see if the issue goes away. If so, re-enable them one by one. Sounds like one of the plugins...
Read more >cms 3.5 - broken js enabled content after plugin save #6343
Summary after a plugin is saved, all js enabled content (owl carousel, or whatever custom js widget) on a page is broken/disfunctional.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@traktorist has pointed out correctly. If you have special characters like $ in your step contents then it will destroy the wizard on safari 11.1. @rstaib Can you please fix this. Thanks
Thanks so much to @traktorist for your answer.
I was able to keep the bootstrap addon by using a glyphicon instead of the $ character.
Old Code (broken):
<span class="input-group-addon">$</span>
New Code (fixed):<span class="input-group-addon"><i class="glyphicon glyphicon-usd"></i></span>
Hope this helps someone reading this thread.