12 lines
219 B
JavaScript
12 lines
219 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
// console.log("example test wepps!!s");
|
||
|
|
|
||
|
|
var linotype = require('../../../index');
|
||
|
|
|
||
|
|
window.onload =function(){
|
||
|
|
window.Linotype = new linotype({
|
||
|
|
verticalCentered: false
|
||
|
|
});
|
||
|
|
window.Linotype.init();
|
||
|
|
};
|