updated by GasGit automation
This commit is contained in:
parent
13f19954ec
commit
7e449ed2a3
1 changed files with 8 additions and 4 deletions
|
@ -9,7 +9,8 @@ var Process = (function (process) {
|
||||||
resetProperty:"ssnipSettings",
|
resetProperty:"ssnipSettings",
|
||||||
purchaseLevel:'ssnipLevel',
|
purchaseLevel:'ssnipLevel',
|
||||||
fullAccess:10,
|
fullAccess:10,
|
||||||
openAccess:true
|
openAccess:true,
|
||||||
|
version:"2.0.13"
|
||||||
};
|
};
|
||||||
|
|
||||||
process.applyElementer = function () {
|
process.applyElementer = function () {
|
||||||
|
@ -164,9 +165,12 @@ var Process = (function (process) {
|
||||||
|
|
||||||
// the full sized chart
|
// the full sized chart
|
||||||
svg = scaleChart(clear);
|
svg = scaleChart(clear);
|
||||||
process.control.code.svg.value = (svg && svg.length ? svg[0] : '');
|
process.control.code.svg.value = "";
|
||||||
|
if (svg && svg.length) {
|
||||||
|
// need to tweak any gradient code so it works outside context of apps script
|
||||||
|
process.control.code.svg.value = svg[0].replace (/url\([^#]+/g, "url(");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function scaleChart(clear, divScale) {
|
function scaleChart(clear, divScale) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue