This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"persons": [ | |
{ | |
"personContact": "+91-9997774221", | |
"personDisplayPicture": "https://fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak-xtf1/v/t1.0-9/1509974_10205886752870556_6275779368926452443_n.jpg?oh=d407cc6c85c581f4ee96cd65ea15a171\u0026oe=55ECD16C\u0026__gda__=1443235524_024ba60447125011575b739fb45d23c4", | |
"personEmail": "[email protected]", | |
"personName": "Samarth Agarwal" | |
}, | |
{ | |
"personContact": "+91-9874563210", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 221, | |
"name": "Euro Size Dragon Ball T Shirt Men 17 Summer Dragon Ball Z Mens Slim Fit Cosplay 3D T Shirts Casual Cotton Tshirt Homme", | |
"slug": "euro-size-dragon-ball-t-shirt-men-17-summer-dragon-ball-z-mens-slim-fit-cosplay-3d-t-shirts-casual-cotton-tshirt-homme", | |
"permalink": "http://fashionfantasy.cosmeticplanetpk.com/product/euro-size-dragon-ball-t-shirt-men-17-summer-dragon-ball-z-mens-slim-fit-cosplay-3d-t-shirts-casual-cotton-tshirt-homme/", | |
"date_created": "2017-07-31T05:28:20", | |
"date_created_gmt": "2017-07-31T05:28:20", | |
"date_modified": "2017-07-31T05:29:46", | |
"date_modified_gmt": "2017-07-31T05:29:46", | |
"type": "simple", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Files changed (27) | |
+5 -0 M README.md | |
+7 -0 M changeLog.md | |
+58 -57 M config.xml | |
+42 -0 A google-services.json | |
+4 -1 M ionic.config.json | |
+3 -3 M package.json | |
+6 -2 M src/app/app.module.ts | |
+1 -1 M src/directives/parallex/parallex.ts | |
+115 -0 A src/pages/account/account.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This is the main Apache HTTP server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information. | |
# In particular, see | |
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html> | |
# for a discussion of each configuration directive. | |
# | |
# Do NOT simply read the instructions in here without understanding | |
# what they do. They're here only as hints or reminders. If you are unsure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Files changed (41) | |
+5 -0 M README.md | |
+7 -0 M changeLog.md | |
+11 -11 M config.xml | |
+88 -53 M package.json | |
+0 -0 M resources/android/icon/drawable-hdpi-icon.png | |
+0 -0 M resources/android/icon/drawable-ldpi-icon.png | |
+0 -0 M resources/android/icon/drawable-mdpi-icon.png | |
+0 -0 M resources/android/icon/drawable-xhdpi-icon.png | |
+0 -0 M resources/android/icon/drawable-xxhdpi-icon.png |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var myChart = Highcharts.chart('container', { | |
chart: { | |
type: 'bar' | |
}, | |
title: { | |
text: 'Fruit Consumption' | |
}, | |
xAxis: { | |
categories: ['Apples', 'Bananas', 'Oranges'] | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Highcharts.chart('container', { | |
chart: { | |
type: 'pie' | |
}, | |
title: { | |
text: 'Browser market shares January, 2017 to Decmber, 2017' | |
}, | |
tooltip: { | |
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>' | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var colors = Highcharts.getOptions().colors; | |
// Create the chart | |
Highcharts.chart("container", { | |
chart: { | |
type: "pie" | |
}, | |
title: { | |
text: "Browser market share, January, 2017 to December, 2017" | |
}, | |
subtitle: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dataset1 = []; | |
var dataset2 = []; | |
for (var i = 0; i < 16; i++) { | |
dataset1.push(Math.floor(Math.random() * 10 + 1)); | |
dataset2.push(Math.floor(Math.random() * 10 + 1)); | |
} | |
var myChart = Highcharts.chart("container", { | |
chart: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://code.highcharts.com/highcharts.js"></script> | |
<div id="container" style="display: block;"></div> |
OlderNewer