Webportal v1

embedded apps

API Reference - Privacy.ModeFull

Privacy.ModeFull

Type Event
wave 2
wave 3

Event triggered when the Full privacy mode is selected.

Example

1
2
3
4
5
6
7
8
9
10
try {
	// Privacy
	if ((typeof Privacy !== "undefined") && (typeof Privacy.addEventListener !== "undefined")) {
		Privacy.addEventListener("ModeFull", function(){
			alert("The privacy full mode is now Active");
		});
	}
} catch(e) {
	DealWithPrivacyError(e);
}

Appeared in Wave 4.1 - version 30.05.14.30