Skip to content

Commit

Permalink
now column can contain numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Sébastien Drouyer committed Nov 5, 2013
1 parent 3a03665 commit 8f906d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/jquery.appwizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ $.widget("nos.appwizard", {


toUnderscoreName: function(str) {
return this.removeDiacritics(str.toLowerCase()).replace(/([^A-Z|a-z| |_])/g, '').trim().replace(/( )/g, '_');
return this.removeDiacritics(str.toLowerCase()).replace(/([^A-Z|a-z|0-9| |_])/g, '').trim().replace(/( )/g, '_');
},

toUnderscoreNameInput: function($input) {
Expand Down

0 comments on commit 8f906d9

Please sign in to comment.