Skip to content

Commit 183c4d6

Browse files
cleanup
1 parent 011c41a commit 183c4d6

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# NativeScript-HTTPS
2-
32
### The definitive way to hit HTTP based APIs in Nativescript.
43
Easily integrate the most reliable native networking libraries with the latest and greatest HTTPS security features.
54
#### A drop-in replacement for the [default http module](https://docs.nativescript.org/cookbook/http#get-response-status-code).
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// You can add custom settings here
22
// for example you can uncomment the following line to force distribution code signing
3-
// CODE_SIGN_IDENTITY = iPhone Distribution
3+
// CODE_SIGN_IDENTITY = iPhone Distribution
44
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
55
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
6-
7-
DEVELOPMENT_TEAM = 8Q5F6M3TNS

demo/app/main-page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function postRequest(url: string, body: any) {
2626
Https.request({
2727
url,
2828
method: 'POST',
29-
body
29+
body
3030
}).then(function(response) {
3131
console.log('Https.request response', response)
3232
}).catch(function(error) {

0 commit comments

Comments
 (0)