Plugin for WordPress that let's you insert Bible quotes into your posts or pages from a variety of Bible versions in different languages. This is a mirror of the SVN repo where the plugin gets published to the WordPress plugins store. Kudos to @kas-catholic for helping import the repo from SVN.
the current situation for searching Bible verses by keyword, is a Search Box comprised of a TextControl and a Button which are however rendered on separated lines, since the TextControl is already wrapped by wp.element.
We need to create a custom component which will render the search button inline and alongside the input[type="search"] as though they were one component.
This will prevent all of the hackish jQuery that tries to force them next to each other in a variety of circumstances.
the current situation for searching Bible verses by keyword, is a Search Box comprised of a
TextControl
and aButton
which are however rendered on separated lines, since theTextControl
is already wrapped bywp.element
. We need to create a custom component which will render the search button inline and alongside theinput[type="search"]
as though they were one component. This will prevent all of the hackish jQuery that tries to force them next to each other in a variety of circumstances.