We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cc853a commit 162f339Copy full SHA for 162f339
example/app.ts
@@ -102,12 +102,12 @@ fetch(url.href)
102
group_add_face(
103
group,
104
0 /* regular */,
105
- deferred_face_new(font_name.ptr, font_name.len, 0 /* text */)
+ deferred_face_new(font_name.ptr, font_name.len, 0 /* text */),
106
);
107
108
109
110
- deferred_face_new(font_name.ptr, font_name.len, 1 /* emoji */)
+ deferred_face_new(font_name.ptr, font_name.len, 1 /* emoji */),
111
112
113
// Initialize our sprite font, without this we just use the browser.
@@ -168,7 +168,7 @@ fetch(url.href)
168
group_cache,
169
cp,
170
0,
171
- -1 /* best choice */
+ -1 /* best choice */,
172
173
group_cache_render_glyph(group_cache, font_idx, cp, -1);
174
0 commit comments