Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ function onNotification(e) {
case 'message':
// if this flag is set, this notification happened while we were in the foreground.
// you might want to play a sound to get the user's attention, throw up a dialog, etc.
if ( e.foreground )
if ( e.foreground == true )
{
$("#app-status-ul").append('<li>--INLINE NOTIFICATION--' + '</li>');

Expand All @@ -446,7 +446,7 @@ function onNotification(e) {
}
else
{ // otherwise we were launched because the user touched a notification in the notification tray.
if ( e.coldstart )
if ( e.coldstart == true )
{
$("#app-status-ul").append('<li>--COLDSTART NOTIFICATION--' + '</li>');
}
Expand Down