title | description |
---|---|
Dialogs RTL |
Use native dialog UI elements, Content will be RTL direction, and the dialog created without title area. This plugin is based on (https://github.com/apache/cordova-plugin-dialogs) |
This plugin provides access to some native dialog UI elements
via a global navigator.notification
object.
Although the object is attached to the global scoped navigator
, it is not available until after the deviceready
event.
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
console.log(navigator.notification);
}
cordova plugin add https://github.com/ahmedelrefaiy/Cordova-RTL-Dialog
- Start reading the plugin features from the original plugin as it is the same.
- For
Title
parameter leave it with empty character like this ' '.