fix image roots, refactoring
|
@ -48,7 +48,7 @@ var imgSrc = [
|
|||
'./src/assets/pictures/*',
|
||||
'./src/app/pages/dashboard/widgets/timeline/img/*',
|
||||
'./src/app/pages/profile/img/*',
|
||||
'./src/app/pages/icons/widgets/kameleon/*',
|
||||
'./src/app/pages/icons/widgets/kameleon-img/*',
|
||||
'./src/assets/js/lib/amChart/images/*',
|
||||
'./src/app/pages/maps/widgets/leaflet/images/*',
|
||||
];
|
||||
|
|
|
@ -3,126 +3,126 @@
|
|||
app.controller('areaChartCtrl', ['$scope', '$timeout', '$element', function($scope, $timeout, $element) {
|
||||
var id = $element[0].getAttribute('id');
|
||||
var areaChart = AmCharts.makeChart(id, {
|
||||
"type": "serial",
|
||||
"theme": "blur",
|
||||
"dataProvider": [
|
||||
type: "serial",
|
||||
theme: "blur",
|
||||
dataProvider: [
|
||||
{
|
||||
"lineColor": colorDanger,
|
||||
"date": "2012-01-01",
|
||||
"duration": 408
|
||||
lineColor: colorDanger,
|
||||
date: "2012-01-01",
|
||||
duration: 408
|
||||
},
|
||||
{
|
||||
"date": "2012-01-02",
|
||||
"duration": 482
|
||||
date: "2012-01-02",
|
||||
duration: 482
|
||||
},
|
||||
{
|
||||
"date": "2012-01-03",
|
||||
"duration": 562
|
||||
date: "2012-01-03",
|
||||
duration: 562
|
||||
},
|
||||
{
|
||||
"date": "2012-01-04",
|
||||
"duration": 379
|
||||
date: "2012-01-04",
|
||||
duration: 379
|
||||
},
|
||||
{
|
||||
"lineColor": colorSuccess,
|
||||
"date": "2012-01-05",
|
||||
"duration": 501
|
||||
lineColor: colorSuccess,
|
||||
date: "2012-01-05",
|
||||
duration: 501
|
||||
},
|
||||
{
|
||||
"date": "2012-01-06",
|
||||
"duration": 443
|
||||
date: "2012-01-06",
|
||||
duration: 443
|
||||
},
|
||||
{
|
||||
"date": "2012-01-07",
|
||||
"duration": 405
|
||||
date: "2012-01-07",
|
||||
duration: 405
|
||||
},
|
||||
{
|
||||
"date": "2012-01-08",
|
||||
"duration": 309,
|
||||
"lineColor": colorPrimary
|
||||
date: "2012-01-08",
|
||||
duration: 309,
|
||||
lineColor: colorPrimary
|
||||
},
|
||||
{
|
||||
"date": "2012-01-09",
|
||||
"duration": 287
|
||||
date: "2012-01-09",
|
||||
duration: 287
|
||||
},
|
||||
{
|
||||
"date": "2012-01-10",
|
||||
"duration": 485
|
||||
date: "2012-01-10",
|
||||
duration: 485
|
||||
},
|
||||
{
|
||||
"date": "2012-01-11",
|
||||
"duration": 890
|
||||
date: "2012-01-11",
|
||||
duration: 890
|
||||
},
|
||||
{
|
||||
"date": "2012-01-12",
|
||||
"duration": 810
|
||||
date: "2012-01-12",
|
||||
duration: 810
|
||||
}
|
||||
],
|
||||
"balloon": {
|
||||
"cornerRadius": 6,
|
||||
"horizontalPadding": 15,
|
||||
"verticalPadding": 10
|
||||
balloon: {
|
||||
cornerRadius: 6,
|
||||
horizontalPadding: 15,
|
||||
verticalPadding: 10
|
||||
},
|
||||
"valueAxes": [
|
||||
valueAxes: [
|
||||
{
|
||||
"duration": "mm",
|
||||
"durationUnits": {
|
||||
"hh": "h ",
|
||||
"mm": "min"
|
||||
duration: "mm",
|
||||
durationUnits: {
|
||||
hh: "h ",
|
||||
mm: "min"
|
||||
},
|
||||
"axisAlpha": 0
|
||||
axisAlpha: 0
|
||||
}
|
||||
],
|
||||
"graphs": [
|
||||
graphs: [
|
||||
{
|
||||
"bullet": "square",
|
||||
"bulletBorderAlpha": 1,
|
||||
"bulletBorderThickness": 1,
|
||||
"fillAlphas": 0.3,
|
||||
"fillColorsField": "lineColor",
|
||||
"legendValueText": "[[value]]",
|
||||
"lineColorField": "lineColor",
|
||||
"title": "duration",
|
||||
"valueField": "duration"
|
||||
bullet: "square",
|
||||
bulletBorderAlpha: 1,
|
||||
bulletBorderThickness: 1,
|
||||
fillAlphas: 0.3,
|
||||
fillColorsField: "lineColor",
|
||||
legendValueText: "[[value]]",
|
||||
lineColorField: "lineColor",
|
||||
title: "duration",
|
||||
valueField: "duration"
|
||||
}
|
||||
],
|
||||
|
||||
"chartCursor": {
|
||||
"categoryBalloonDateFormat": "YYYY MMM DD",
|
||||
"cursorAlpha": 0,
|
||||
"fullWidth": true
|
||||
chartCursor: {
|
||||
categoryBalloonDateFormat: "YYYY MMM DD",
|
||||
cursorAlpha: 0,
|
||||
fullWidth: true
|
||||
},
|
||||
"dataDateFormat": "YYYY-MM-DD",
|
||||
"categoryField": "date",
|
||||
"categoryAxis": {
|
||||
"dateFormats": [
|
||||
dataDateFormat: "YYYY-MM-DD",
|
||||
categoryField: "date",
|
||||
categoryAxis: {
|
||||
dateFormats: [
|
||||
{
|
||||
"period": "DD",
|
||||
"format": "DD"
|
||||
period: "DD",
|
||||
format: "DD"
|
||||
},
|
||||
{
|
||||
"period": "WW",
|
||||
"format": "MMM DD"
|
||||
period: "WW",
|
||||
format: "MMM DD"
|
||||
},
|
||||
{
|
||||
"period": "MM",
|
||||
"format": "MMM"
|
||||
period: "MM",
|
||||
format: "MMM"
|
||||
},
|
||||
{
|
||||
"period": "YYYY",
|
||||
"format": "YYYY"
|
||||
period: "YYYY",
|
||||
format: "YYYY"
|
||||
}
|
||||
],
|
||||
"parseDates": true,
|
||||
"autoGridCount": false,
|
||||
"axisColor": "#555555",
|
||||
"gridAlpha": 0,
|
||||
"gridCount": 50
|
||||
parseDates: true,
|
||||
autoGridCount: false,
|
||||
axisColor: "#555555",
|
||||
gridAlpha: 0,
|
||||
gridCount: 50
|
||||
},
|
||||
"export": {
|
||||
"enabled": true
|
||||
export: {
|
||||
enabled: true
|
||||
},
|
||||
"pathToImages": '/release/img/'
|
||||
pathToImages: 'release/img/'
|
||||
});
|
||||
|
||||
areaChart.addListener("dataUpdated", zoomAreaChart);
|
||||
|
|
|
@ -3,73 +3,73 @@
|
|||
app.controller('barChartCtrl', ['$scope', '$timeout', '$element', function($scope, $timeout, $element) {
|
||||
var id = $element[0].getAttribute('id');
|
||||
var barChart = AmCharts.makeChart(id, {
|
||||
"type": "serial",
|
||||
"theme": "blur",
|
||||
"dataProvider": [
|
||||
type: "serial",
|
||||
theme: "blur",
|
||||
dataProvider: [
|
||||
{
|
||||
"country": "USA",
|
||||
"visits": 3025,
|
||||
"color": colorPrimary
|
||||
country: "USA",
|
||||
visits: 3025,
|
||||
color: colorPrimary
|
||||
},
|
||||
{
|
||||
"country": "China",
|
||||
"visits": 1882,
|
||||
"color": colorDanger
|
||||
country: "China",
|
||||
visits: 1882,
|
||||
color: colorDanger
|
||||
|
||||
},
|
||||
{
|
||||
"country": "Japan",
|
||||
"visits": 1809,
|
||||
"color": colorPrimaryLight
|
||||
country: "Japan",
|
||||
visits: 1809,
|
||||
color: colorPrimaryLight
|
||||
},
|
||||
{
|
||||
"country": "Germany",
|
||||
"visits": 1322,
|
||||
"color": colorSuccess
|
||||
country: "Germany",
|
||||
visits: 1322,
|
||||
color: colorSuccess
|
||||
},
|
||||
{
|
||||
"country": "UK",
|
||||
"visits": 1122,
|
||||
"color": colorWarning
|
||||
country: "UK",
|
||||
visits: 1122,
|
||||
color: colorWarning
|
||||
},
|
||||
{
|
||||
"country": "France",
|
||||
"visits": 1114,
|
||||
"color": colorDefault
|
||||
country: "France",
|
||||
visits: 1114,
|
||||
color: colorDefault
|
||||
}
|
||||
],
|
||||
"valueAxes": [
|
||||
valueAxes: [
|
||||
{
|
||||
"axisAlpha": 0,
|
||||
"position": "left",
|
||||
"title": "Visitors from country"
|
||||
axisAlpha: 0,
|
||||
position: "left",
|
||||
title: "Visitors from country"
|
||||
}
|
||||
],
|
||||
"startDuration": 1,
|
||||
"graphs": [
|
||||
startDuration: 1,
|
||||
graphs: [
|
||||
{
|
||||
"balloonText": "<b>[[category]]: [[value]]</b>",
|
||||
"fillColorsField": "color",
|
||||
"fillAlphas": 0.9,
|
||||
"lineAlpha": 0.2,
|
||||
"type": "column",
|
||||
"valueField": "visits"
|
||||
balloonText: "<b>[[category]]: [[value]]</b>",
|
||||
fillColorsField: "color",
|
||||
fillAlphas: 0.9,
|
||||
lineAlpha: 0.2,
|
||||
type: "column",
|
||||
valueField: "visits"
|
||||
}
|
||||
],
|
||||
"chartCursor": {
|
||||
"categoryBalloonEnabled": false,
|
||||
"cursorAlpha": 0,
|
||||
"zoomable": false
|
||||
chartCursor: {
|
||||
categoryBalloonEnabled: false,
|
||||
cursorAlpha: 0,
|
||||
zoomable: false
|
||||
},
|
||||
"categoryField": "country",
|
||||
"categoryAxis": {
|
||||
"gridPosition": "start",
|
||||
"labelRotation": 45
|
||||
categoryField: "country",
|
||||
categoryAxis: {
|
||||
gridPosition: "start",
|
||||
labelRotation: 45
|
||||
},
|
||||
"export": {
|
||||
"enabled": true
|
||||
export: {
|
||||
enabled: true
|
||||
},
|
||||
"creditsPosition": "top-right",
|
||||
"pathToImages": '/release/img/'
|
||||
creditsPosition: "top-right",
|
||||
pathToImages: "release/img/"
|
||||
});
|
||||
}]);
|
|
@ -3,54 +3,54 @@
|
|||
app.controller('funnelChartCtrl', ['$scope', '$timeout', '$element', function($scope, $timeout, $element) {
|
||||
var id = $element[0].getAttribute('id');
|
||||
var funnelChart = AmCharts.makeChart(id, {
|
||||
"type": "funnel",
|
||||
"theme": "blur",
|
||||
"dataProvider": [
|
||||
type: "funnel",
|
||||
theme: "blur",
|
||||
dataProvider: [
|
||||
{
|
||||
"title": "Website visits",
|
||||
"value": 300
|
||||
title: "Website visits",
|
||||
value: 300
|
||||
},
|
||||
{
|
||||
"title": "Downloads",
|
||||
"value": 123
|
||||
title: "Downloads",
|
||||
value: 123
|
||||
},
|
||||
{
|
||||
"title": "Requested prices",
|
||||
"value": 98
|
||||
title: "Requested prices",
|
||||
value: 98
|
||||
},
|
||||
{
|
||||
"title": "Contaced",
|
||||
"value": 72
|
||||
title: "Contaced",
|
||||
value: 72
|
||||
},
|
||||
{
|
||||
"title": "Purchased",
|
||||
"value": 35
|
||||
title: "Purchased",
|
||||
value: 35
|
||||
},
|
||||
{
|
||||
"title": "Asked for support",
|
||||
"value": 25
|
||||
title: "Asked for support",
|
||||
value: 25
|
||||
},
|
||||
{
|
||||
"title": "Purchased more",
|
||||
"value": 18
|
||||
title: "Purchased more",
|
||||
value: 18
|
||||
}
|
||||
],
|
||||
"titleField": "title",
|
||||
"marginRight": 160,
|
||||
"marginLeft": 15,
|
||||
"labelPosition": "right",
|
||||
"funnelAlpha": 0.9,
|
||||
"valueField": "value",
|
||||
"startX": 0,
|
||||
"neckWidth": "0%",
|
||||
"startAlpha": 0,
|
||||
"outlineThickness": 1,
|
||||
"neckHeight": "0%",
|
||||
"balloonText": "[[title]]:<b>[[value]]</b>",
|
||||
"export": {
|
||||
"enabled": true
|
||||
titleField: "title",
|
||||
marginRight: 160,
|
||||
marginLeft: 15,
|
||||
labelPosition: "right",
|
||||
funnelAlpha: 0.9,
|
||||
valueField: "value",
|
||||
startX: 0,
|
||||
neckWidth: "0%",
|
||||
startAlpha: 0,
|
||||
outlineThickness: 1,
|
||||
neckHeight: "0%",
|
||||
balloonText: "[[title]]:<b>[[value]]</b>",
|
||||
export: {
|
||||
enabled: true
|
||||
},
|
||||
"creditsPosition": "bottom-left",
|
||||
"pathToImages": '/release/img/'
|
||||
creditsPosition: "bottom-left",
|
||||
pathToImages: "release/img/"
|
||||
});
|
||||
}]);
|
|
@ -3,133 +3,132 @@
|
|||
app.controller('lineChartCtrl', ['$scope', '$timeout', '$element', function($scope, $timeout, $element) {
|
||||
var id = $element[0].getAttribute('id');
|
||||
var lineChart = AmCharts.makeChart(id, {
|
||||
"type": "serial",
|
||||
"theme": "blur",
|
||||
"marginTop": 0,
|
||||
"marginRight": 15,
|
||||
"dataProvider": [
|
||||
type: "serial",
|
||||
theme: "blur",
|
||||
marginTop: 0,
|
||||
marginRight: 15,
|
||||
dataProvider: [
|
||||
{
|
||||
"year": "1990",
|
||||
"value": -0.17
|
||||
year: "1990",
|
||||
value: -0.17
|
||||
},
|
||||
{
|
||||
"year": "1991",
|
||||
"value": -0.254
|
||||
year: "1991",
|
||||
value: -0.254
|
||||
},
|
||||
{
|
||||
"year": "1992",
|
||||
"value": 0.019
|
||||
year: "1992",
|
||||
value: 0.019
|
||||
},
|
||||
{
|
||||
"year": "1993",
|
||||
"value": -0.063
|
||||
year: "1993",
|
||||
value: -0.063
|
||||
},
|
||||
{
|
||||
"year": "1994",
|
||||
"value": 0.005
|
||||
year: "1994",
|
||||
value: 0.005
|
||||
},
|
||||
{
|
||||
"year": "1995",
|
||||
"value": 0.077
|
||||
year: "1995",
|
||||
value: 0.077
|
||||
},
|
||||
{
|
||||
"year": "1996",
|
||||
"value": 0.12
|
||||
year: "1996",
|
||||
value: 0.12
|
||||
},
|
||||
{
|
||||
"year": "1997",
|
||||
"value": 0.011
|
||||
year: "1997",
|
||||
value: 0.011
|
||||
},
|
||||
{
|
||||
"year": "1998",
|
||||
"value": 0.177
|
||||
year: "1998",
|
||||
value: 0.177
|
||||
},
|
||||
{
|
||||
"year": "1999",
|
||||
"value": -0.021
|
||||
year: "1999",
|
||||
value: -0.021
|
||||
},
|
||||
{
|
||||
"year": "2000",
|
||||
"value": -0.037
|
||||
year: "2000",
|
||||
value: -0.037
|
||||
},
|
||||
{
|
||||
"year": "2001",
|
||||
"value": 0.03
|
||||
year: "2001",
|
||||
value: 0.03
|
||||
},
|
||||
{
|
||||
"year": "2002",
|
||||
"value": 0.179
|
||||
year: "2002",
|
||||
value: 0.179
|
||||
},
|
||||
{
|
||||
"year": "2003",
|
||||
"value": 0.2
|
||||
year: "2003",
|
||||
value: 0.2
|
||||
},
|
||||
{
|
||||
"year": "2004",
|
||||
"value": 0.180
|
||||
year: "2004",
|
||||
value: 0.180
|
||||
},
|
||||
{
|
||||
"year": "2005",
|
||||
"value": 0.21
|
||||
year: "2005",
|
||||
value: 0.21
|
||||
}
|
||||
],
|
||||
"valueAxes": [
|
||||
valueAxes: [
|
||||
{
|
||||
"axisAlpha": 0,
|
||||
"position": "left"
|
||||
axisAlpha: 0,
|
||||
position: "left"
|
||||
}
|
||||
],
|
||||
"graphs": [
|
||||
graphs: [
|
||||
{
|
||||
"id": "g1",
|
||||
"balloonText": "[[value]]",
|
||||
"bullet": "round",
|
||||
"bulletSize": 8,
|
||||
"lineColor": colorDanger,
|
||||
"lineThickness": 1,
|
||||
"negativeLineColor": colorPrimary,
|
||||
"type": "smoothedLine",
|
||||
"valueField": "value"
|
||||
id: "g1",
|
||||
balloonText: "[[value]]",
|
||||
bullet: "round",
|
||||
bulletSize: 8,
|
||||
lineColor: colorDanger,
|
||||
lineThickness: 1,
|
||||
negativeLineColor: colorPrimary,
|
||||
type: "smoothedLine",
|
||||
valueField: "value"
|
||||
}
|
||||
],
|
||||
"chartScrollbar": {
|
||||
"graph": "g1",
|
||||
"gridAlpha": 0,
|
||||
"color": "#888888",
|
||||
"scrollbarHeight": 55,
|
||||
"backgroundAlpha": 0,
|
||||
"selectedBackgroundAlpha": 0.1,
|
||||
"selectedBackgroundColor": "#888888",
|
||||
"graphFillAlpha": 0,
|
||||
"autoGridCount": true,
|
||||
"selectedGraphFillAlpha": 0,
|
||||
"graphLineAlpha": 0.2,
|
||||
"graphLineColor": "#c2c2c2",
|
||||
"selectedGraphLineColor": "#888888",
|
||||
"selectedGraphLineAlpha": 1
|
||||
|
||||
chartScrollbar: {
|
||||
graph: "g1",
|
||||
gridAlpha: 0,
|
||||
color: "#888888",
|
||||
scrollbarHeight: 55,
|
||||
backgroundAlpha: 0,
|
||||
selectedBackgroundAlpha: 0.1,
|
||||
selectedBackgroundColor: "#888888",
|
||||
graphFillAlpha: 0,
|
||||
autoGridCount: true,
|
||||
selectedGraphFillAlpha: 0,
|
||||
graphLineAlpha: 0.2,
|
||||
graphLineColor: "#c2c2c2",
|
||||
selectedGraphLineColor: "#888888",
|
||||
selectedGraphLineAlpha: 1
|
||||
},
|
||||
"chartCursor": {
|
||||
"categoryBalloonDateFormat": "YYYY",
|
||||
"cursorAlpha": 0,
|
||||
"valueLineEnabled": true,
|
||||
"valueLineBalloonEnabled": true,
|
||||
"valueLineAlpha": 0.5,
|
||||
"fullWidth": true
|
||||
chartCursor: {
|
||||
categoryBalloonDateFormat: "YYYY",
|
||||
cursorAlpha: 0,
|
||||
valueLineEnabled: true,
|
||||
valueLineBalloonEnabled: true,
|
||||
valueLineAlpha: 0.5,
|
||||
fullWidth: true
|
||||
},
|
||||
"dataDateFormat": "YYYY",
|
||||
"categoryField": "year",
|
||||
"categoryAxis": {
|
||||
"minPeriod": "YYYY",
|
||||
"parseDates": true,
|
||||
"minorGridAlpha": 0.1,
|
||||
"minorGridEnabled": true
|
||||
dataDateFormat: "YYYY",
|
||||
categoryField: "year",
|
||||
categoryAxis: {
|
||||
minPeriod: "YYYY",
|
||||
parseDates: true,
|
||||
minorGridAlpha: 0.1,
|
||||
minorGridEnabled: true
|
||||
},
|
||||
"export": {
|
||||
"enabled": true
|
||||
export: {
|
||||
enabled: true
|
||||
},
|
||||
"creditsPosition": "bottom-right",
|
||||
"pathToImages": '/release/img/'
|
||||
creditsPosition: "bottom-right",
|
||||
pathToImages: "release/img/"
|
||||
});
|
||||
|
||||
lineChart.addListener("rendered", zoomChart);
|
||||
|
|
|
@ -3,81 +3,81 @@
|
|||
app.controller('pieChartCtrl', ['$scope', '$timeout', '$element', function($scope, $timeout, $element) {
|
||||
var id = $element[0].getAttribute('id');
|
||||
var pieChart = AmCharts.makeChart(id, {
|
||||
"type": "pie",
|
||||
"startDuration": 0,
|
||||
"theme": "blur",
|
||||
"addClassNames": true,
|
||||
"legend": {
|
||||
"position": "right",
|
||||
"marginRight": 100,
|
||||
"autoMargins": false
|
||||
type: "pie",
|
||||
startDuration: 0,
|
||||
theme: "blur",
|
||||
addClassNames: true,
|
||||
legend: {
|
||||
position: "right",
|
||||
marginRight: 100,
|
||||
autoMargins: false
|
||||
},
|
||||
"innerRadius": "40%",
|
||||
"defs": {
|
||||
"filter": [
|
||||
innerRadius: "40%",
|
||||
defs: {
|
||||
filter: [
|
||||
{
|
||||
"id": "shadow",
|
||||
"width": "200%",
|
||||
"height": "200%",
|
||||
"feOffset": {
|
||||
"result": "offOut",
|
||||
"in": "SourceAlpha",
|
||||
"dx": 0,
|
||||
"dy": 0
|
||||
id: "shadow",
|
||||
width: "200%",
|
||||
height: "200%",
|
||||
feOffset: {
|
||||
result: "offOut",
|
||||
in: "SourceAlpha",
|
||||
dx: 0,
|
||||
dy: 0
|
||||
},
|
||||
"feGaussianBlur": {
|
||||
"result": "blurOut",
|
||||
"in": "offOut",
|
||||
"stdDeviation": 5
|
||||
feGaussianBlur: {
|
||||
result: "blurOut",
|
||||
in: "offOut",
|
||||
stdDeviation: 5
|
||||
},
|
||||
"feBlend": {
|
||||
"in": "SourceGraphic",
|
||||
"in2": "blurOut",
|
||||
"mode": "normal"
|
||||
feBlend: {
|
||||
in: "SourceGraphic",
|
||||
in2: "blurOut",
|
||||
mode: "normal"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"dataProvider": [
|
||||
dataProvider: [
|
||||
{
|
||||
"country": "Lithuania",
|
||||
"litres": 501.9
|
||||
country: "Lithuania",
|
||||
litres: 501.9
|
||||
},
|
||||
{
|
||||
"country": "Czech Republic",
|
||||
"litres": 301.9
|
||||
country: "Czech Republic",
|
||||
litres: 301.9
|
||||
},
|
||||
{
|
||||
"country": "Ireland",
|
||||
"litres": 201.1
|
||||
country: "Ireland",
|
||||
litres: 201.1
|
||||
},
|
||||
{
|
||||
"country": "Germany",
|
||||
"litres": 165.8
|
||||
country: "Germany",
|
||||
litres: 165.8
|
||||
},
|
||||
{
|
||||
"country": "Australia",
|
||||
"litres": 139.9
|
||||
country: "Australia",
|
||||
litres: 139.9
|
||||
},
|
||||
{
|
||||
"country": "Austria",
|
||||
"litres": 128.3
|
||||
country: "Austria",
|
||||
litres: 128.3
|
||||
},
|
||||
{
|
||||
"country": "UK",
|
||||
"litres": 99
|
||||
country: "UK",
|
||||
litres: 99
|
||||
},
|
||||
{
|
||||
"country": "Belgium",
|
||||
"litres": 60
|
||||
country: "Belgium",
|
||||
litres: 60
|
||||
}
|
||||
],
|
||||
"valueField": "litres",
|
||||
"titleField": "country",
|
||||
"export": {
|
||||
"enabled": true
|
||||
valueField: "litres",
|
||||
titleField: "country",
|
||||
export: {
|
||||
enabled: true
|
||||
},
|
||||
"creditsPosition": "bottom-left",
|
||||
creditsPosition: "bottom-left",
|
||||
|
||||
autoMargins: false,
|
||||
marginTop: 10,
|
||||
|
@ -85,7 +85,7 @@ app.controller('pieChartCtrl', ['$scope', '$timeout', '$element', function($scop
|
|||
marginLeft: 0,
|
||||
marginRight: 0,
|
||||
pullOutRadius: 0,
|
||||
"pathToImages": '/release/img/'
|
||||
pathToImages: "release/img/"
|
||||
});
|
||||
|
||||
pieChart.addListener("init", handleInit);
|
||||
|
|
|
@ -2,132 +2,132 @@
|
|||
|
||||
app.controller('amChartCtrl', ['$scope', '$timeout', '$element', function ($scope, $timeout, $element) {
|
||||
var chartData = [
|
||||
{ "date": new Date(2011, 0), "value": -30700},
|
||||
{ "date": new Date(2011, 1), "value": -16800},
|
||||
{ "date": new Date(2011, 2), "value": -7300},
|
||||
{ "date": new Date(2011, 3), "value": -2700},
|
||||
{ "date": new Date(2011, 4), "value": -25100},
|
||||
{ "date": new Date(2011, 5), "value": -28100},
|
||||
{ "date": new Date(2011, 6), "value": -34800},
|
||||
{ "date": new Date(2011, 7), "value": -7400},
|
||||
{ "date": new Date(2011, 8), "value": -1100},
|
||||
{ "date": new Date(2011, 9), "value": -7400},
|
||||
{ "date": new Date(2011, 10), "value": -12400},
|
||||
{ "date": new Date(2011, 11), "value": -2400},
|
||||
{ "date": new Date(2012, 0), "value": -2200},
|
||||
{ "date": new Date(2012, 1), "value": 0},
|
||||
{ "date": new Date(2012, 2), "value": -29600},
|
||||
{ "date": new Date(2012, 3), "value": -21700},
|
||||
{ "date": new Date(2012, 4), "value": -14700},
|
||||
{ "date": new Date(2012, 5), "value": -1500},
|
||||
{ "date": new Date(2012, 6), "value": -1600},
|
||||
{ "date": new Date(2012, 7), "value": -1100},
|
||||
{ "date": new Date(2012, 8), "value": -6800},
|
||||
{ "date": new Date(2012, 9), "value": -1900},
|
||||
{ "date": new Date(2012, 10), "value": -5600},
|
||||
{ "date": new Date(2012, 11), "value": -7700},
|
||||
{ "date": new Date(2013, 0), "value": -21300},
|
||||
{ "date": new Date(2013, 1), "value": -13700},
|
||||
{ "date": new Date(2013, 2), "value": -300},
|
||||
{ "date": new Date(2013, 3), "value": 10900},
|
||||
{ "date": new Date(2013, 4), "value": 20300},
|
||||
{ "date": new Date(2013, 5), "value": 25500},
|
||||
{ "date": new Date(2013, 6), "value": 10700},
|
||||
{ "date": new Date(2013, 7), "value": -4200},
|
||||
{ "date": new Date(2013, 8), "value": -5000},
|
||||
{ "date": new Date(2013, 9), "value": 17700},
|
||||
{ "date": new Date(2013, 10), "value": 25100},
|
||||
{ "date": new Date(2013, 11), "value": 37000},
|
||||
{ "date": new Date(2014, 0), "value": 300},
|
||||
{ "date": new Date(2014, 1), "value": 17900},
|
||||
{ "date": new Date(2014, 2), "value": 1800},
|
||||
{ "date": new Date(2014, 3), "value": 10400},
|
||||
{ "date": new Date(2014, 4), "value": 25500},
|
||||
{ "date": new Date(2014, 5), "value": 2100},
|
||||
{ "date": new Date(2014, 6), "value": 6500},
|
||||
{ "date": new Date(2014, 7), "value": 1100},
|
||||
{ "date": new Date(2014, 8), "value": 17200},
|
||||
{ "date": new Date(2014, 9), "value": 26900},
|
||||
{ "date": new Date(2014, 10), "value": 14100},
|
||||
{ "date": new Date(2014, 11), "value": 35300},
|
||||
{ "date": new Date(2015, 0), "value": 54800},
|
||||
{ "date": new Date(2015, 1), "value": 29800},
|
||||
{ "date": new Date(2015, 2), "value": 26700},
|
||||
{ "date": new Date(2015, 3), "value": 41100},
|
||||
{ "date": new Date(2015, 4), "value": 46200},
|
||||
{ "date": new Date(2015, 5), "value": 4700},
|
||||
{ "date": new Date(2015, 6), "value": 44500},
|
||||
{ "date": new Date(2015, 7), "value": 4700}
|
||||
{ date: new Date(2011, 0), value: -30700},
|
||||
{ date: new Date(2011, 1), value: -16800},
|
||||
{ date: new Date(2011, 2), value: -7300},
|
||||
{ date: new Date(2011, 3), value: -2700},
|
||||
{ date: new Date(2011, 4), value: -25100},
|
||||
{ date: new Date(2011, 5), value: -28100},
|
||||
{ date: new Date(2011, 6), value: -34800},
|
||||
{ date: new Date(2011, 7), value: -7400},
|
||||
{ date: new Date(2011, 8), value: -1100},
|
||||
{ date: new Date(2011, 9), value: -7400},
|
||||
{ date: new Date(2011, 10), value: -12400},
|
||||
{ date: new Date(2011, 11), value: -2400},
|
||||
{ date: new Date(2012, 0), value: -2200},
|
||||
{ date: new Date(2012, 1), value: 0},
|
||||
{ date: new Date(2012, 2), value: -29600},
|
||||
{ date: new Date(2012, 3), value: -21700},
|
||||
{ date: new Date(2012, 4), value: -14700},
|
||||
{ date: new Date(2012, 5), value: -1500},
|
||||
{ date: new Date(2012, 6), value: -1600},
|
||||
{ date: new Date(2012, 7), value: -1100},
|
||||
{ date: new Date(2012, 8), value: -6800},
|
||||
{ date: new Date(2012, 9), value: -1900},
|
||||
{ date: new Date(2012, 10), value: -5600},
|
||||
{ date: new Date(2012, 11), value: -7700},
|
||||
{ date: new Date(2013, 0), value: -21300},
|
||||
{ date: new Date(2013, 1), value: -13700},
|
||||
{ date: new Date(2013, 2), value: -300},
|
||||
{ date: new Date(2013, 3), value: 10900},
|
||||
{ date: new Date(2013, 4), value: 20300},
|
||||
{ date: new Date(2013, 5), value: 25500},
|
||||
{ date: new Date(2013, 6), value: 10700},
|
||||
{ date: new Date(2013, 7), value: -4200},
|
||||
{ date: new Date(2013, 8), value: -5000},
|
||||
{ date: new Date(2013, 9), value: 17700},
|
||||
{ date: new Date(2013, 10), value: 25100},
|
||||
{ date: new Date(2013, 11), value: 37000},
|
||||
{ date: new Date(2014, 0), value: 300},
|
||||
{ date: new Date(2014, 1), value: 17900},
|
||||
{ date: new Date(2014, 2), value: 1800},
|
||||
{ date: new Date(2014, 3), value: 10400},
|
||||
{ date: new Date(2014, 4), value: 25500},
|
||||
{ date: new Date(2014, 5), value: 2100},
|
||||
{ date: new Date(2014, 6), value: 6500},
|
||||
{ date: new Date(2014, 7), value: 1100},
|
||||
{ date: new Date(2014, 8), value: 17200},
|
||||
{ date: new Date(2014, 9), value: 26900},
|
||||
{ date: new Date(2014, 10), value: 14100},
|
||||
{ date: new Date(2014, 11), value: 35300},
|
||||
{ date: new Date(2015, 0), value: 54800},
|
||||
{ date: new Date(2015, 1), value: 29800},
|
||||
{ date: new Date(2015, 2), value: 26700},
|
||||
{ date: new Date(2015, 3), value: 41100},
|
||||
{ date: new Date(2015, 4), value: 46200},
|
||||
{ date: new Date(2015, 5), value: 4700},
|
||||
{ date: new Date(2015, 6), value: 44500},
|
||||
{ date: new Date(2015, 7), value: 4700}
|
||||
];
|
||||
|
||||
var id = $element[0].getAttribute('id');
|
||||
var chart = AmCharts.makeChart(id, {
|
||||
"type": "serial",
|
||||
"theme": "blur",
|
||||
"marginTop": 0,
|
||||
"marginRight": 15,
|
||||
"dataProvider": chartData,
|
||||
"valueAxes": [
|
||||
type: "serial",
|
||||
theme: "blur",
|
||||
marginTop: 0,
|
||||
marginRight: 15,
|
||||
dataProvider: chartData,
|
||||
valueAxes: [
|
||||
{
|
||||
"gridAlpha": 0
|
||||
gridAlpha: 0
|
||||
}
|
||||
],
|
||||
"graphs": [
|
||||
graphs: [
|
||||
{
|
||||
"id": "g1",
|
||||
"bullet": "round",
|
||||
"bulletSize": 8,
|
||||
"useLineColorForBulletBorder": true,
|
||||
"lineColor": colorSuccess,
|
||||
"lineThickness": 1,
|
||||
"negativeLineColor": colorDanger,
|
||||
"type": "smoothedLine",
|
||||
"valueField": "value",
|
||||
"fillAlphas": 0.3,
|
||||
"fillColorsField": "lineColor"
|
||||
id: "g1",
|
||||
bullet: "round",
|
||||
bulletSize: 8,
|
||||
useLineColorForBulletBorder: true,
|
||||
lineColor: colorSuccess,
|
||||
lineThickness: 1,
|
||||
negativeLineColor: colorDanger,
|
||||
type: "smoothedLine",
|
||||
valueField: "value",
|
||||
fillAlphas: 0.3,
|
||||
fillColorsField: "lineColor"
|
||||
}
|
||||
],
|
||||
"chartScrollbar": {
|
||||
"graph": "g1",
|
||||
"gridAlpha": 0,
|
||||
"color": "#888888",
|
||||
"scrollbarHeight": 55,
|
||||
"backgroundAlpha": 0,
|
||||
"selectedBackgroundAlpha": 0.1,
|
||||
"selectedBackgroundColor": "#ffffff",
|
||||
"graphFillAlpha": 0,
|
||||
"autoGridCount": true,
|
||||
"selectedGraphFillAlpha": 0,
|
||||
"graphLineAlpha": 0.2,
|
||||
"graphLineColor": "#c2c2c2",
|
||||
"selectedGraphLineColor": "#888888",
|
||||
"selectedGraphLineAlpha": 1
|
||||
chartScrollbar: {
|
||||
graph: "g1",
|
||||
gridAlpha: 0,
|
||||
color: "#888888",
|
||||
scrollbarHeight: 55,
|
||||
backgroundAlpha: 0,
|
||||
selectedBackgroundAlpha: 0.1,
|
||||
selectedBackgroundColor: "#ffffff",
|
||||
graphFillAlpha: 0,
|
||||
autoGridCount: true,
|
||||
selectedGraphFillAlpha: 0,
|
||||
graphLineAlpha: 0.2,
|
||||
graphLineColor: "#c2c2c2",
|
||||
selectedGraphLineColor: "#888888",
|
||||
selectedGraphLineAlpha: 1
|
||||
},
|
||||
"chartCursor": {
|
||||
"categoryBalloonDateFormat": "MM YYYY",
|
||||
"categoryBalloonColor": "#4285F4",
|
||||
"categoryBalloonAlpha": 0.7,
|
||||
"cursorAlpha": 0,
|
||||
"valueLineEnabled": true,
|
||||
"valueLineBalloonEnabled": true,
|
||||
"valueLineAlpha": 0.5
|
||||
chartCursor: {
|
||||
categoryBalloonDateFormat: "MM YYYY",
|
||||
categoryBalloonColor: "#4285F4",
|
||||
categoryBalloonAlpha: 0.7,
|
||||
cursorAlpha: 0,
|
||||
valueLineEnabled: true,
|
||||
valueLineBalloonEnabled: true,
|
||||
valueLineAlpha: 0.5
|
||||
},
|
||||
"dataDateFormat": "MM YYYY",
|
||||
"categoryField": "date",
|
||||
"categoryAxis": {
|
||||
"parseDates": true,
|
||||
"gridAlpha": 0
|
||||
dataDateFormat: "MM YYYY",
|
||||
categoryField: "date",
|
||||
categoryAxis: {
|
||||
parseDates: true,
|
||||
gridAlpha: 0
|
||||
},
|
||||
"export": {
|
||||
"enabled": true
|
||||
export: {
|
||||
enabled: true
|
||||
},
|
||||
"creditsPosition": "bottom-right",
|
||||
"zoomOutButton": {
|
||||
creditsPosition: "bottom-right",
|
||||
zoomOutButton: {
|
||||
backgroundColor: '#fff',
|
||||
backgroundAlpha: 0
|
||||
},
|
||||
"zoomOutText": "",
|
||||
"pathToImages": '/release/img/'
|
||||
zoomOutText: "",
|
||||
pathToImages: "release/img/"
|
||||
});
|
||||
|
||||
function zoomChart() {
|
||||
|
|
|
@ -254,10 +254,10 @@ app.controller('amMapCtrl', ['$scope', '$timeout', '$element', function ($scope,
|
|||
}
|
||||
]
|
||||
},
|
||||
"export": {
|
||||
"enabled": true
|
||||
export: {
|
||||
enabled: true
|
||||
},
|
||||
"creditsPosition": "bottom-right",
|
||||
"pathToImages": '/release/img/'
|
||||
creditsPosition: "bottom-right",
|
||||
pathToImages: "release/img/"
|
||||
});
|
||||
}]);
|
|
@ -1,7 +1,7 @@
|
|||
<section id="cd-timeline" class="cd-container cssanimations" ng-controller="timelineCtrl">
|
||||
<div class="cd-timeline-block">
|
||||
<div class="cd-timeline-img cd-picture">
|
||||
<img src="/release/img/cd-icon-picture.svg" alt="Picture">
|
||||
<img src="release/img/cd-icon-picture.svg" alt="Picture">
|
||||
</div>
|
||||
|
||||
<div class="cd-timeline-content cd-timeline-content-green">
|
||||
|
@ -15,7 +15,7 @@
|
|||
|
||||
<div class="cd-timeline-block">
|
||||
<div class="cd-timeline-img cd-movie">
|
||||
<img src="/release/img/cd-icon-movie.svg" alt="Movie">
|
||||
<img src="release/img/cd-icon-movie.svg" alt="Movie">
|
||||
</div>
|
||||
|
||||
<div class="cd-timeline-content cd-timeline-content-red">
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
<div class="cd-timeline-block">
|
||||
<div class="cd-timeline-img cd-location">
|
||||
<img src="/release/img/cd-icon-location.svg" alt="Location">
|
||||
<img src="release/img/cd-icon-location.svg" alt="Location">
|
||||
</div>
|
||||
|
||||
<div class="cd-timeline-content cd-timeline-content-blue">
|
||||
|
|
|
@ -39,4 +39,210 @@ angular.module('BlurAdmin.iconsPage', ['ngRoute'])
|
|||
]
|
||||
}
|
||||
];
|
||||
|
||||
$scope.icons = {
|
||||
kameleonIcons: [
|
||||
{
|
||||
name: "Beach",
|
||||
img: "Beach.svg"
|
||||
},
|
||||
{
|
||||
name: "Bus",
|
||||
img: "Bus.svg"
|
||||
},
|
||||
{
|
||||
name: "Cheese",
|
||||
img: "Cheese.svg"
|
||||
},
|
||||
{
|
||||
name: "Desert",
|
||||
img: "Desert.svg"
|
||||
},
|
||||
{
|
||||
name: "Images",
|
||||
img: "Images.svg"
|
||||
},
|
||||
{
|
||||
name: "Magician",
|
||||
img: "Magician.svg"
|
||||
},
|
||||
{
|
||||
name: "Makeup",
|
||||
img: "Makeup.svg"
|
||||
},
|
||||
{
|
||||
name: "Programming",
|
||||
img: "Programming.svg"
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
img: "Shop.svg"
|
||||
},
|
||||
{
|
||||
name: "Surfer",
|
||||
img: "Surfer.svg"
|
||||
},
|
||||
{
|
||||
name: "Phone Booth",
|
||||
img: "Phone-Booth.svg"
|
||||
},
|
||||
{
|
||||
name: "Ninja",
|
||||
img: "Ninja.svg"
|
||||
},
|
||||
{
|
||||
name: "Apartment",
|
||||
img: "Apartment.svg"
|
||||
},
|
||||
{
|
||||
name: "Batman",
|
||||
img: "Batman.svg"
|
||||
},
|
||||
{
|
||||
name: "Medal",
|
||||
img: "Medal-2.svg"
|
||||
},
|
||||
{
|
||||
name: "Money",
|
||||
img: "Money-Increase.svg"
|
||||
},
|
||||
{
|
||||
name: "Street View",
|
||||
img: "Street-View.svg"
|
||||
},
|
||||
{
|
||||
name: "Student",
|
||||
img: "Student-3.svg"
|
||||
},
|
||||
{
|
||||
name: "Bell",
|
||||
img: "Bell.svg"
|
||||
},
|
||||
{
|
||||
name: "Woman",
|
||||
img: "Boss-5.svg"
|
||||
},
|
||||
{
|
||||
name: "Euro",
|
||||
img: "Euro-Coin.svg"
|
||||
},
|
||||
{
|
||||
name: "Chessboard",
|
||||
img: "Chessboard.svg"
|
||||
},
|
||||
{
|
||||
name: "Burglar",
|
||||
img: "Burglar.svg"
|
||||
},
|
||||
{
|
||||
name: "Dna",
|
||||
img: "Dna.svg"
|
||||
},
|
||||
{
|
||||
name: "Clipboard Plan",
|
||||
img: "Clipboard-Plan.svg"
|
||||
},
|
||||
{
|
||||
name: "Boss",
|
||||
img: "Boss-3.svg"
|
||||
},
|
||||
{
|
||||
name: "Key",
|
||||
img: "Key.svg"
|
||||
},
|
||||
{
|
||||
name: "Surgeon",
|
||||
img: "Surgeon.svg"
|
||||
},
|
||||
{
|
||||
name: "Hacker",
|
||||
img: "Hacker.svg"
|
||||
},
|
||||
{
|
||||
name: "Santa",
|
||||
img: "Santa.svg"
|
||||
}
|
||||
],
|
||||
kameleonRoundedIcons: [
|
||||
{
|
||||
color: "success",
|
||||
img: "Apartment.svg",
|
||||
name: "Apartment"
|
||||
},
|
||||
{
|
||||
color: "warning",
|
||||
img: "Bus.svg",
|
||||
name: "Bus"
|
||||
},
|
||||
{
|
||||
color: "primary",
|
||||
img: "Checklist.svg",
|
||||
name: "Checklist"
|
||||
},
|
||||
{
|
||||
color: "warning",
|
||||
img: "Desert.svg",
|
||||
name: "Desert"
|
||||
},
|
||||
{
|
||||
color: "danger",
|
||||
img: "Laptop-Signal.svg",
|
||||
name: "Laptop Signal"
|
||||
},
|
||||
{
|
||||
color: "info",
|
||||
img: "Love-Letter.svg",
|
||||
name: "Love Letter"
|
||||
},
|
||||
{
|
||||
color: "success",
|
||||
img: "Makeup.svg",
|
||||
name: "Makeup"
|
||||
},
|
||||
{
|
||||
color: "primary",
|
||||
img: "Santa.svg",
|
||||
name: "Santa"
|
||||
},
|
||||
{
|
||||
color: "success",
|
||||
img: "Surfer.svg",
|
||||
name: "Surfer"
|
||||
},
|
||||
{
|
||||
color: "info",
|
||||
img: "Vector.svg",
|
||||
name: "Vector"
|
||||
},
|
||||
{
|
||||
color: "warning",
|
||||
img: "Money-Increase.svg",
|
||||
name: "Money Increase"
|
||||
},
|
||||
{
|
||||
color: "info",
|
||||
img: "Alien.svg",
|
||||
name: "Alien"
|
||||
},
|
||||
{
|
||||
color: "danger",
|
||||
img: "Online-Shopping.svg",
|
||||
name: "Online Shopping"
|
||||
},
|
||||
{
|
||||
color: "warning",
|
||||
img: "Euro-Coin.svg",
|
||||
name: "Euro"
|
||||
},
|
||||
{
|
||||
color: "info",
|
||||
img: "Boss-3.svg",
|
||||
name: "Boss"
|
||||
}
|
||||
],
|
||||
ionicons: ["ion-ionic", "ion-arrow-right-b", "ion-arrow-down-b", "ion-arrow-left-b", "ion-arrow-up-c", "ion-arrow-right-c", "ion-arrow-down-c", "ion-arrow-left-c", "ion-arrow-return-right", "ion-arrow-return-left", "ion-arrow-swap", "ion-arrow-shrink", "ion-arrow-expand", "ion-arrow-move", "ion-arrow-resize", "ion-chevron-up", "ion-chevron-right", "ion-chevron-down", "ion-chevron-left", "ion-navicon-round", "ion-navicon", "ion-drag", "ion-log-in", "ion-log-out", "ion-checkmark-round", "ion-checkmark", "ion-checkmark-circled", "ion-close-round", "ion-plus-round", "ion-minus-round", "ion-information", "ion-help", "ion-backspace-outline", "ion-help-buoy", "ion-asterisk", "ion-alert", "ion-alert-circled", "ion-refresh", "ion-loop", "ion-shuffle", "ion-home", "ion-search", "ion-flag", "ion-star", "ion-heart", "ion-heart-broken", "ion-gear-a", "ion-gear-b", "ion-toggle-filled", "ion-toggle", "ion-settings", "ion-wrench", "ion-hammer", "ion-edit", "ion-trash-a", "ion-trash-b", "ion-document", "ion-document-text", "ion-clipboard", "ion-scissors", "ion-funnel", "ion-bookmark", "ion-email", "ion-email-unread", "ion-folder", "ion-filing", "ion-archive", "ion-reply", "ion-reply-all", "ion-forward"],
|
||||
fontAwesomeIcons: ["fa fa-adjust", "fa fa-anchor", "fa fa-archive", "fa fa-area-chart", "fa fa-arrows", "fa fa-arrows-h", "fa fa-arrows-v", "fa fa-asterisk", "fa fa-at", "fa fa-automobile", "fa fa-ban", "fa fa-bank", "fa fa-bar-chart", "fa fa-bar-chart-o", "fa fa-barcode", "fa fa-bars", "fa fa-bed", "fa fa-beer", "fa fa-bell", "fa fa-bell-o", "fa fa-bell-slash", "fa fa-bell-slash-o", "fa fa-bicycle", "fa fa-binoculars", "fa fa-birthday-cake", "fa fa-bolt", "fa fa-bomb", "fa fa-book", "fa fa-bookmark", "fa fa-bookmark-o", "fa fa-briefcase", "fa fa-bug", "fa fa-building", "fa fa-building-o", "fa fa-bullhorn"],
|
||||
socicon: ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", ",", ";", ":", "+", "@", "=", "-", "^", "¨", "$", "*", "&", "(", "#", ".", "_", "]", ")", "£", "'", "\"", "}", "{"]
|
||||
}
|
||||
|
||||
}]);
|
|
@ -1,38 +1,4 @@
|
|||
<div class="row icons-list success">
|
||||
<div class="col-xs-2"><i class="fa fa-adjust"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-anchor"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-archive"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-area-chart"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-arrows"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-arrows-h"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-arrows-v"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-asterisk"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-at"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-automobile"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-ban"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bank"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bar-chart"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bar-chart-o"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-barcode"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bars"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bed"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-beer"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bell"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bell-o"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bell-slash"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bell-slash-o"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bicycle"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-binoculars"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-birthday-cake"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bolt"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bomb"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-book"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bookmark"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bookmark-o"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-briefcase"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bug"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-building"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-building-o"></i></div>
|
||||
<div class="col-xs-2"><i class="fa fa-bullhorn"></i></div>
|
||||
<div class="row icons-list success" ng-controller="iconsPageCtrl">
|
||||
<div class="col-xs-2" ng-repeat="icon in icons.fontAwesomeIcons"><i class="fa {{icon}}"></i></div>
|
||||
</div>
|
||||
<a href="http://fortawesome.github.io/Font-Awesome/icons/" target="_blank" class="see-all-icons">See all Font Awesome icons</a>
|
|
@ -1,73 +1,4 @@
|
|||
<div class="row icons-list primary">
|
||||
<div class="col-xs-2"><i class="ion-ionic"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-right-b"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-down-b"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-left-b"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-up-c"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-right-c"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-down-c"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-left-c"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-return-right"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-return-left"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-swap"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-shrink"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-expand"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-move"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-arrow-resize"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-chevron-up"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-chevron-right"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-chevron-down"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-chevron-left"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-navicon-round"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-navicon"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-drag"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-log-in"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-log-out"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-checkmark-round"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-checkmark"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-checkmark-circled"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-close-round"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-plus-round"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-minus-round"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-information"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-help"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-backspace-outline"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-help-buoy"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-asterisk"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-alert"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-alert-circled"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-refresh"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-loop"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-shuffle"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-home"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-search"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-flag"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-star"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-heart"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-heart-broken"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-gear-a"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-gear-b"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-toggle-filled"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-toggle"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-settings"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-wrench"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-hammer"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-edit"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-trash-a"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-trash-b"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-document"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-document-text"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-clipboard"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-scissors"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-funnel"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-bookmark"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-email"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-email-unread"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-folder"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-filing"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-archive"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-reply"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-reply-all"></i></div>
|
||||
<div class="col-xs-2"><i class="ion-forward"></i></div>
|
||||
<div class="row icons-list primary" ng-controller="iconsPageCtrl">
|
||||
<div class="col-xs-2" ng-repeat="icon in icons.ionicons"><i class="{{icon}}"></i></div>
|
||||
</div>
|
||||
<a href="http://ionicons.com/" target="_blank" class="see-all-icons">See all ionicons icons</a>
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
@ -1,93 +1,6 @@
|
|||
<div class="row clearfix">
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Beach.svg"><span>Beach</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Bus.svg"><span>Bus</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Cheese.svg"><span>Cheese</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Desert.svg"><span>Desert</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Images.svg"><span>Images</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Magician.svg"><span>Magician</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Makeup.svg"><span>Makeup</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Programming.svg"><span>Programming</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Shop.svg"><span>Shop</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Surfer.svg"><span>Surfer</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Phone-Booth.svg"><span>Phone Booth</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Ninja.svg"><span>Ninja</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Apartment.svg"><span>Apartment</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Batman.svg"><span>Batman</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Medal-2.svg"><span>Medal</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Money-Increase.svg"><span>Money</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Street-View.svg"><span>Street View</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Student-3.svg"><span>Student</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Bell.svg"><span>Bell</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Boss-5.svg"><span>Woman</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Euro-Coin.svg"><span>Euro</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Chessboard.svg"><span>Chessboard</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Burglar.svg"><span>Burglar</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Dna.svg"><span>Dna</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Clipboard-Plan.svg"><span>Clipboard Plan</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Boss-3.svg"><span>Boss</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Key.svg"><span>Key</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Surgeon.svg"><span>Surgeon</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Hacker.svg"><span>Hacker</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon"><img src="/release/img/Santa.svg"><span>Santa</span></div>
|
||||
<div class="row clearfix" ng-controller="iconsPageCtrl">
|
||||
<div class="kameleon-row" ng-repeat="icon in icons.kameleonIcons">
|
||||
<div class="kameleon-icon"><img ng-src="release/img/{{icon.img}}"><span>{{icon.name}}</span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,51 +1,6 @@
|
|||
<div class="row clearfix">
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg success"><img src="/release/img/Apartment.svg"><span>Apartment</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg warning"><img src="/release/img/Bus.svg"><span>Bus</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg primary"><img src="/release/img/Checklist.svg"><span>Checklist</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg warning"><img src="/release/img/Desert.svg"><span>Desert</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg danger"><img src="/release/img/Laptop-Signal.svg"><span>Laptop Signal</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg info"><img src="/release/img/Love-Letter.svg"><span>Love Letter</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg success"><img src="/release/img/Makeup.svg"><span>Makeup</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg primary"><img src="/release/img/Santa.svg"><span>Santa</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg success"><img src="/release/img/Surfer.svg"><span>Surfer</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg info"><img src="/release/img/Vector.svg"><span>Vector</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg warning"><img
|
||||
src="/release/img/Money-Increase.svg"><span>Money Increase</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg info"><img src="/release/img/Alien.svg"><span>Alien</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg danger"><img
|
||||
src="/release/img/Online-Shopping.svg"><span>Online Shopping</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg warning"><img src="/release/img/Euro-Coin.svg"><span>Euro</span></div>
|
||||
</div>
|
||||
<div class="kameleon-row">
|
||||
<div class="kameleon-icon with-round-bg info"><img src="/release/img/Boss-3.svg"><span>Boss</span></div>
|
||||
<div class="row clearfix" ng-controller="iconsPageCtrl">
|
||||
<div class="kameleon-row" ng-repeat="icon in icons.kameleonRoundedIcons">
|
||||
<div class="kameleon-icon with-round-bg {{icon.color}}"><img ng-src="release/img/{{icon.img}}"><span>{{ icon.name }}</span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,87 +1,4 @@
|
|||
<div class="row icons-list danger">
|
||||
<div class="col-xs-2"><i class="socicon">a</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">b</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">c</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">d</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">e</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">f</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">g</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">h</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">i</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">j</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">k</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">l</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">m</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">n</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">o</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">p</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">q</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">r</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">s</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">t</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">u</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">v</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">w</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">x</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">y</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">A</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">B</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">C</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">D</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">E</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">F</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">G</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">H</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">I</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">J</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">K</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">L</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">M</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">N</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">O</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">P</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">Q</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">R</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">S</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">T</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">U</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">V</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">W</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">X</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">Y</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">Z</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">1</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">2</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">3</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">4</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">5</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">6</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">7</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">8</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">9</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">10</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">,</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">;</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">:</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">+</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">@</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">=</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">-</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">^</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">¨</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">$</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">*</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">&</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">(</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">#</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">.</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">_</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">]</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">)</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">£</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">'</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">"</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">}</i></div>
|
||||
<div class="col-xs-2"><i class="socicon">{</i></div>
|
||||
<div class="row icons-list danger" ng-controller="iconsPageCtrl">
|
||||
<div class="col-xs-2" ng-repeat="icon in icons.socicon"><i class="socicon">{{ icon }}</i></div>
|
||||
</div>
|
||||
<a href="http://www.socicon.com/chart.php" target="_blank" class="see-all-icons">See all Socicon icons</a>
|
|
@ -296,13 +296,13 @@
|
|||
}
|
||||
|
||||
.leaflet-control-layers-toggle {
|
||||
background-image: url(/src/release/img/layers.png);
|
||||
background-image: url(../release/img/layers.png);
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
}
|
||||
|
||||
.leaflet-retina .leaflet-control-layers-toggle {
|
||||
background-image: url(/src/release/img/layers-2x.png);
|
||||
background-image: url(../release/img/layers-2x.png);
|
||||
background-size: 26px 26px;
|
||||
}
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
app.controller('leafletCtrl', ["$timeout", function ($timeout) {
|
||||
var map = L.map('leaflet-map').setView([51.505, -0.09], 13);
|
||||
|
||||
L.Icon.Default.imagePath = '/release/img';
|
||||
L.Icon.Default.imagePath = 'release/img';
|
||||
|
||||
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
|
||||
|
|
|
@ -444,7 +444,7 @@ app.controller('mapBubblesCtrl', [function () {
|
|||
unlistedAreasAlpha: 0.1
|
||||
};
|
||||
map.imagesSettings.balloonText = "<span style='font-size:14px;'><b>[[title]]</b>: [[value]]</span>";
|
||||
map.pathToImages = "/release/img/";
|
||||
map.pathToImages = "release/img/";
|
||||
|
||||
var dataProvider = {
|
||||
mapVar: AmCharts.maps.worldLow,
|
||||
|
|
|
@ -260,6 +260,6 @@ app.controller('mapLinesCtrl', [function () {
|
|||
"export": {
|
||||
"enabled": true
|
||||
},
|
||||
"pathToImages": '/release/img/'
|
||||
"pathToImages": 'release/img/'
|
||||
} );
|
||||
}]);
|
|
@ -12,7 +12,7 @@ angular.module('BlurAdmin.profilePage', ['ngRoute'])
|
|||
$scope.picture = "release/img/photo.png";
|
||||
|
||||
$scope.removePicture = function () {
|
||||
$scope.picture = "/release/img/no-photo.png";
|
||||
$scope.picture = "release/img/no-photo.png";
|
||||
$scope.noPicture = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><img src="/release/img/chrome.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/chrome.svg" width="20" height="20"></td>
|
||||
<td class="nowrap">Google Chrome</td>
|
||||
<td class="align-right">10,392</td>
|
||||
<td class="table-arr"><i class="icon-up"></i></td>
|
||||
|
@ -40,7 +40,7 @@
|
|||
<td class="table-arr"><i class="icon-up"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/firefox.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/firefox.svg" width="20" height="20"></td>
|
||||
<td class="nowrap">Mozilla Firefox</td>
|
||||
<td class="align-right">7,873</td>
|
||||
<td class="table-arr"><i class="icon-down"></i></td>
|
||||
|
@ -58,7 +58,7 @@
|
|||
<td class="table-arr"><i class="icon-up"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/ie.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/ie.svg" width="20" height="20"></td>
|
||||
<td class="nowrap">Internet Explorer</td>
|
||||
<td class="align-right">5,890</td>
|
||||
<td class="table-arr"><i class="icon-down"></i></td>
|
||||
|
@ -76,7 +76,7 @@
|
|||
<td class="table-arr"><i class="icon-down"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/safari.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/safari.svg" width="20" height="20"></td>
|
||||
<td class="nowrap">Safari</td>
|
||||
<td class="align-right">4,001</td>
|
||||
<td class="table-arr"><i class="icon-up"></i></td>
|
||||
|
@ -94,7 +94,7 @@
|
|||
<td class="table-arr"><i class="icon-down"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/opera.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/opera.svg" width="20" height="20"></td>
|
||||
<td class="nowrap">Opera</td>
|
||||
<td class="align-right">1,833</td>
|
||||
<td class="table-arr"><i class="icon-up"></i></td>
|
||||
|
|
|
@ -11,35 +11,35 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><img src="/release/img/chrome.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/chrome.svg" width="20" height="20"></td>
|
||||
<td ng-class="nowrap">Google Chrome</td>
|
||||
<td class="align-right">10,392</td>
|
||||
<td class="align-right">4,214</td>
|
||||
<td class="align-right">45%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/firefox.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/firefox.svg" width="20" height="20"></td>
|
||||
<td>Mozilla Firefox</td>
|
||||
<td class="align-right">7,873</td>
|
||||
<td class="align-right">3,031</td>
|
||||
<td class="align-right">28%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/ie.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/ie.svg" width="20" height="20"></td>
|
||||
<td ng-class="nowrap">Internet Explorer</td>
|
||||
<td class="align-right">5,890</td>
|
||||
<td class="align-right">2,102</td>
|
||||
<td class="align-right">17%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/safari.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/safari.svg" width="20" height="20"></td>
|
||||
<td ng-class="nowrap">Safari</td>
|
||||
<td class="align-right">4,001</td>
|
||||
<td class="align-right">1,001</td>
|
||||
<td class="align-right">14%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/opera.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/opera.svg" width="20" height="20"></td>
|
||||
<td ng-class="nowrap">Opera</td>
|
||||
<td class="align-right">1,833</td>
|
||||
<td class="align-right">83</td>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><img src="/release/img/chrome.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/chrome.svg" width="20" height="20"></td>
|
||||
<td class="nowrap">Google Chrome</td>
|
||||
<td class="align-right">10,392</td>
|
||||
<td class="table-arr"><i class="icon-up"></i></td>
|
||||
|
@ -24,7 +24,7 @@
|
|||
<td class="table-arr"><i class="icon-up"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/firefox.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/firefox.svg" width="20" height="20"></td>
|
||||
<td class="nowrap">Mozilla Firefox</td>
|
||||
<td class="align-right">7,873</td>
|
||||
<td class="table-arr"><i class="icon-down"></i></td>
|
||||
|
@ -34,7 +34,7 @@
|
|||
<td class="table-arr"><i class="icon-up"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/ie.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/ie.svg" width="20" height="20"></td>
|
||||
<td class="nowrap">Internet Explorer</td>
|
||||
<td class="align-right">5,890</td>
|
||||
<td class="table-arr"><i class="icon-down"></i></td>
|
||||
|
@ -44,7 +44,7 @@
|
|||
<td class="table-arr"><i class="icon-down"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/safari.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/safari.svg" width="20" height="20"></td>
|
||||
<td class="nowrap">Safari</td>
|
||||
<td class="align-right">4,001</td>
|
||||
<td class="table-arr"><i class="icon-up"></i></td>
|
||||
|
@ -54,7 +54,7 @@
|
|||
<td class="table-arr"><i class="icon-down"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="/release/img/opera.svg" width="20" height="20"></td>
|
||||
<td><img src="release/img/opera.svg" width="20" height="20"></td>
|
||||
<td class="nowrap">Opera</td>
|
||||
<td class="align-right">1,833</td>
|
||||
<td class="table-arr"><i class="icon-up"></i></td>
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="img-wrapper"><img src="/release/img/typo03.png" alt="" title=""/></div>
|
||||
<div class="img-wrapper"><img src="release/img/typo03.png" alt="" title=""/></div>
|
||||
<p>Vel elit, eros elementum, id lacinia, duis non ut ut tortor blandit. Mauris <a
|
||||
href="javascript:void(0)">dapibus</a> magna rutrum. Ornare neque suspendisse <a
|
||||
href="javascript:void(0)">phasellus wisi</a>, quam cras pede rutrum suspendisse, <a
|
||||
|
@ -75,7 +75,7 @@
|
|||
arcu nulla.</p>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="img-wrapper"><img src="/release/img/typo01.png" alt="" title=""/></div>
|
||||
<div class="img-wrapper"><img src="release/img/typo01.png" alt="" title=""/></div>
|
||||
<p>Et suspendisse, adipiscing fringilla ornare sit ligula sed, vel nam. Interdum et justo nulla, fermentum
|
||||
lobortis purus ut eu, duis nibh dolor massa tristique elementum, nibh iste potenti risus fusce aliquet
|
||||
fusce, ullamcorper debitis primis arcu tellus vestibulum ac.</p>
|
||||
|
@ -97,19 +97,19 @@
|
|||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="img-wrapper"><img src="/release/img/typo04.png" alt=""/></div>
|
||||
<div class="img-wrapper"><img src="release/img/typo04.png" alt=""/></div>
|
||||
<p>Eget augue, lacus erat ante egestas scelerisque aliquam, metus molestie leo in habitasse magna
|
||||
maecenas</p>
|
||||
<a href="javascript:void(0)" class="learn-more">Lean more</a>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="img-wrapper"><img src="/release/img/typo05.png" alt=""/></div>
|
||||
<div class="img-wrapper"><img src="release/img/typo05.png" alt=""/></div>
|
||||
<p>Augue massa et parturient, suspendisse orci nec scelerisque sit, integer nam mauris pede consequat in
|
||||
velit</p>
|
||||
<a href="javascript:void(0)" class="learn-more">Lean more</a>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="img-wrapper"><img src="/release/img/typo06.png" alt=""/></div>
|
||||
<div class="img-wrapper"><img src="release/img/typo06.png" alt=""/></div>
|
||||
<p>Eget turpis, tortor lobortis porttitor, vestibulum nullam vehicula aliquam</p>
|
||||
<a href="javascript:void(0)" class="learn-more">Lean more</a>
|
||||
</div>
|
||||
|
@ -153,7 +153,7 @@
|
|||
|
||||
<div class="banner">
|
||||
<div class="large-banner-wrapper">
|
||||
<img src="/release/img/banner.png" alt=""/>
|
||||
<img src="release/img/banner.png" alt=""/>
|
||||
</div>
|
||||
|
||||
<div class="banner-text-wrapper">
|
||||
|
|
|
@ -159,11 +159,11 @@ a.al-logo {
|
|||
}
|
||||
|
||||
.icon-up {
|
||||
background: url(/release/img/arrow-green-up.svg) no-repeat 0 0;
|
||||
background: url(../img/arrow-green-up.svg) no-repeat 0 0;
|
||||
}
|
||||
|
||||
.icon-down {
|
||||
background: url(/release/img/arrow-red-down.svg) no-repeat 0 0;
|
||||
background: url(../img/arrow-red-down.svg) no-repeat 0 0;
|
||||
}
|
||||
|
||||
.disable-text-selection {
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
}
|
||||
|
||||
@mixin main-background() {
|
||||
background: url(/release/img/green-bg.jpg) no-repeat top center fixed;
|
||||
background: url(../img/green-bg.jpg) no-repeat top center fixed;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
@font-face {
|
||||
font-family: 'socicon';
|
||||
src: url('/release/fonts/socicon.eot');
|
||||
src: url('/release/fonts/socicon.eot?#iefix') format('embedded-opentype'),
|
||||
url('/release/fonts/socicon.woff') format('woff'),
|
||||
url('/release/fonts/socicon.woff2') format('woff2'),
|
||||
url('/release/fonts/socicon.ttf') format('truetype'),
|
||||
url('/release/fonts/socicon.svg#sociconregular') format('svg');
|
||||
src: url('../fonts/socicon.eot');
|
||||
src: url('../fonts/socicon.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/socicon.woff') format('woff'),
|
||||
url('../fonts/socicon.woff2') format('woff2'),
|
||||
url('../fonts/socicon.ttf') format('truetype'),
|
||||
url('../fonts/socicon.svg#sociconregular') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
text-transform: initial;
|
||||
|
|