switch icons to Font Awesome (for now)

This commit is contained in:
Norbert Renner 2016-10-01 12:30:30 +02:00
parent d53fb7723f
commit b108efae5c
8 changed files with 33 additions and 13 deletions

View file

@ -48,7 +48,7 @@
drawButton = L.easyButton({
states: [{
stateName: 'deactivate-draw',
icon: 'glyphicon-ok',
icon: 'fa-pencil active',
onClick: function (control) {
routing.draw(false);
control.state('activate-draw');
@ -56,7 +56,7 @@
title: 'Stop drawing route'
}, {
stateName: 'activate-draw',
icon: 'glyphicon-road',
icon: 'fa-pencil',
onClick: function (control) {
routing.draw(true);
control.state('deactivate-draw');
@ -66,7 +66,7 @@
});
deleteButton = L.easyButton(
'glyphicon-trash',
'fa-trash-o',
function () {
bootbox.confirm({
size: 'small',