Commit 523a4e1b by Sebastián Katzer

Fix alignment

parent 641ff31a
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
} }
[self check:command]; [self check:command];
}]; }];
} }
/** /**
...@@ -245,7 +245,7 @@ ...@@ -245,7 +245,7 @@
CDVPluginResult* result; CDVPluginResult* result;
result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK
messageAsString:type]; messageAsString:type];
[self.commandDelegate sendPluginResult:result [self.commandDelegate sendPluginResult:result
callbackId:command.callbackId]; callbackId:command.callbackId];
...@@ -508,7 +508,9 @@ ...@@ -508,7 +508,9 @@
UNNotificationRequest* toast = notification.request; UNNotificationRequest* toast = notification.request;
if ([toast.trigger isKindOfClass:UNPushNotificationTrigger.class]) { if ([toast.trigger isKindOfClass:UNPushNotificationTrigger.class]) {
[_delegate userNotificationCenter:center willPresentNotification:notification withCompletionHandler:completionHandler]; [_delegate userNotificationCenter:center
willPresentNotification:notification
withCompletionHandler:completionHandler];
return; return;
} }
...@@ -540,7 +542,9 @@ ...@@ -540,7 +542,9 @@
completionHandler(); completionHandler();
if ([toast.trigger isKindOfClass:UNPushNotificationTrigger.class]) { if ([toast.trigger isKindOfClass:UNPushNotificationTrigger.class]) {
[_delegate userNotificationCenter:center didReceiveNotificationResponse:response withCompletionHandler:completionHandler]; [_delegate userNotificationCenter:center
didReceiveNotificationResponse:response
withCompletionHandler:completionHandler];
return; return;
} }
...@@ -711,3 +715,4 @@ ...@@ -711,3 +715,4 @@
} }
@end @end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment