Forbid colons, this Fixes #301

This commit is contained in:
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. * time, and allow us to "play back" these changes so legacy padIds can be found.
*/ */
var padIdTransforms = [ var padIdTransforms = [
[/\s+/g, '_'] [/\s+/g, '_'],
[/:+/g, '_']
]; ];
/** /**