Forbid colons, this Fixes #301
This commit is contained in:
parent
c3f728b2ed
commit
00c3281a02
|
@ -43,7 +43,8 @@ var globalPads = {
|
||||||
* time, and allow us to "play back" these changes so legacy padIds can be found.
|
* time, and allow us to "play back" these changes so legacy padIds can be found.
|
||||||
*/
|
*/
|
||||||
var padIdTransforms = [
|
var padIdTransforms = [
|
||||||
[/\s+/g, '_']
|
[/\s+/g, '_'],
|
||||||
|
[/:+/g, '_']
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue