Browse Source

Update README.md

Sebastián Katzer 12 years ago
parent
commit
c43d5c07f2
1 changed files with 5 additions and 4 deletions
  1. 5 4
      README.md

+ 5 - 4
README.md

@@ -49,10 +49,6 @@ window.plugin.notification.local.add({
     sound: sound // (only iOS) a sound to be played, the sound must be located in your project's resources and must be a caf file
 });
 ```
-**Android:** The `message` property can be devided into *title* and *subtitle* section:
-```javascript
-message: "Title\r\nSubtitle comes after linebreak"
-```
 
 ### cancel()
 The method cancels a notification which was previously added. It takes the ID of the notification as an argument.
@@ -87,3 +83,8 @@ function background (id) {
     console.log('I WAS IN THE BACKGROUND ID='+id)
 }
 ```
+
+**Android:** The `message` property can be devided into *title* and *subtitle* section:
+```javascript
+message: "Title\r\nSubtitle comes after linebreak"
+```