Forbid colons, this Fixes #301

pull/506/merge
Peter 'Pita' Martischka 2012-02-26 19:59:02 +01:00
parent c3f728b2ed
commit 00c3281a02
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ var globalPads = {
* time, and allow us to "play back" these changes so legacy padIds can be found.
*/
var padIdTransforms = [
[/\s+/g, '_']
[/\s+/g, '_'],
[/:+/g, '_']
];
/**