Fix for #97
parent
1ae1f20d48
commit
8302edf2a1
File diff suppressed because one or more lines are too long
|
@ -14,7 +14,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
// build: 2013-11-20
|
||||
// build: 2013-11-21
|
||||
// Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
|
@ -1900,7 +1900,7 @@ function svgTransform2string(tstr) {
|
|||
});
|
||||
return res;
|
||||
}
|
||||
var rgTransform = new RegExp("^[a-z][" + spaces + "]*-?\\.?\\d");
|
||||
var rgTransform = new RegExp("^[a-z][" + spaces + "]*-?\\.?\\d", "i");
|
||||
function transform2matrix(tstr, bbox) {
|
||||
var tdata = parseTransformString(tstr),
|
||||
m = new Matrix;
|
||||
|
|
|
@ -1152,7 +1152,7 @@ function svgTransform2string(tstr) {
|
|||
});
|
||||
return res;
|
||||
}
|
||||
var rgTransform = new RegExp("^[a-z][" + spaces + "]*-?\\.?\\d");
|
||||
var rgTransform = new RegExp("^[a-z][" + spaces + "]*-?\\.?\\d", "i");
|
||||
function transform2matrix(tstr, bbox) {
|
||||
var tdata = parseTransformString(tstr),
|
||||
m = new Matrix;
|
||||
|
|
Loading…
Reference in New Issue