View box-sizing-reset-bootstrap3.css
/*#region box-sizing fix*/ | |
*, | |
*:before, | |
*:after { | |
-webkit-box-sizing: content-box; | |
-moz-box-sizing: content-box; | |
box-sizing: content-box; | |
} | |
.container-fluid .row .col, |
View jspdf.plugin.text-align.js
(function (api, $) { | |
'use strict'; | |
api.writeText = function (x, y, text, options) { | |
options = options || {}; | |
var defaults = { | |
align: 'left', | |
width: this.internal.pageSize.width | |
} |