You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 8, 2021. It is now read-only.
Top style is applied to the element div of the ui-loader. It should be possible to override this somehow as styling the position of the loader would now require workarounds.
In addition changing the string through $.mobile.loadingMessage will escape any html characters, making it impossible to add simple html like etc. It would be great if the innerHtml of the div.ui-loader could be overridden, allowing for more flexibility (.e.g. additional elements)
The text was updated successfully, but these errors were encountered:
change $loader.find( "h1" ).text( $.mobile.loadingMessage )
to $loader.html($.mobile.loadingHtml)
or a choice between the both, replace loadingMessage with object
loadingContent = {use: 'message', text: 'loading', html: 'loading'} (no html elements as it brakes github, e.g. we get styling)
Top style is applied to the element div of the ui-loader. It should be possible to override this somehow as styling the position of the loader would now require workarounds.
In addition changing the string through $.mobile.loadingMessage will escape any html characters, making it impossible to add simple html like
etc. It would be great if the innerHtml of the div.ui-loader could be overridden, allowing for more flexibility (.e.g. additional elements)
The text was updated successfully, but these errors were encountered: