Skip to content

Commit 5ca2308

Browse files
committed
Template change for android font file path.
1 parent 3920656 commit 5ca2308

9 files changed

+9
-9
lines changed

Entypo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ var glyphMap = {
421421
"youtube-with-circle": 62106
422422
};
423423

424-
var Entypo = createIconSet(glyphMap, 'Entypo', 'Fonts/Entypo.ttf');
424+
var Entypo = createIconSet(glyphMap, 'Entypo', 'Entypo.ttf');
425425

426426
module.exports = Entypo;
427427
module.exports.glyphMap = glyphMap;

EvilIcons.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ var glyphMap = {
7979
"user": 61764
8080
};
8181

82-
var EvilIcons = createIconSet(glyphMap, 'EvilIcons', 'Fonts/EvilIcons.ttf');
82+
var EvilIcons = createIconSet(glyphMap, 'EvilIcons', 'EvilIcons.ttf');
8383

8484
module.exports = EvilIcons;
8585
module.exports.glyphMap = glyphMap;

FontAwesome.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ var glyphMap = {
684684
"fonticons": 62080
685685
};
686686

687-
var FontAwesome = createIconSet(glyphMap, 'FontAwesome', 'Fonts/FontAwesome.ttf');
687+
var FontAwesome = createIconSet(glyphMap, 'FontAwesome', 'FontAwesome.ttf');
688688

689689
module.exports = FontAwesome;
690690
module.exports.glyphMap = glyphMap;

Foundation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ var glyphMap = {
293293
"zoom-out": 61978
294294
};
295295

296-
var Foundation = createIconSet(glyphMap, 'fontcustom', 'Fonts/Foundation.ttf');
296+
var Foundation = createIconSet(glyphMap, 'fontcustom', 'Foundation.ttf');
297297

298298
module.exports = Foundation;
299299
module.exports.glyphMap = glyphMap;

Ionicons.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ var glyphMap = {
743743
"xbox": 62220
744744
};
745745

746-
var Ionicons = createIconSet(glyphMap, 'Ionicons', 'Fonts/Ionicons.ttf');
746+
var Ionicons = createIconSet(glyphMap, 'Ionicons', 'Ionicons.ttf');
747747

748748
module.exports = Ionicons;
749749
module.exports.glyphMap = glyphMap;

MaterialIcons.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ var glyphMap = {
806806
"youtube-searched-for": 62491
807807
};
808808

809-
var MaterialIcons = createIconSet(glyphMap, 'MaterialIcons', 'Fonts/MaterialIcons.ttf');
809+
var MaterialIcons = createIconSet(glyphMap, 'MaterialIcons', 'MaterialIcons.ttf');
810810

811811
module.exports = MaterialIcons;
812812
module.exports.glyphMap = glyphMap;

Octicons.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ var glyphMap = {
215215
"x": 61569
216216
};
217217

218-
var Octicons = createIconSet(glyphMap, 'octicons', 'Fonts/Octicons.ttf');
218+
var Octicons = createIconSet(glyphMap, 'octicons', 'Octicons.ttf');
219219

220220
module.exports = Octicons;
221221
module.exports.glyphMap = glyphMap;

Zocial.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ var glyphMap = {
110110
"youtube": 61795
111111
};
112112

113-
var Zocial = createIconSet(glyphMap, 'zocial', 'Fonts/Zocial.ttf');
113+
var Zocial = createIconSet(glyphMap, 'zocial', 'Zocial.ttf');
114114

115115
module.exports = Zocial;
116116
module.exports.glyphMap = glyphMap;

template/iconSet.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
var createIconSet = require('./lib/create-icon-set');
1010
var glyphMap = ${glyphMap};
1111

12-
var ${componentName} = createIconSet(glyphMap, '${fontFamily}', 'Fonts/${componentName}.ttf');
12+
var ${componentName} = createIconSet(glyphMap, '${fontFamily}', '${componentName}.ttf');
1313

1414
module.exports = ${componentName};
1515
module.exports.glyphMap = glyphMap;

0 commit comments

Comments
 (0)