|
|
@@ -1268,10 +1268,11 @@
|
|
|
FileInputCheck(that, id, false, 100, function (fileName) {
|
|
|
var name = fileName.substring(0, fileName.lastIndexOf("."));
|
|
|
var ext = fileName.substring(fileName.lastIndexOf(".") + 1, fileName.length);
|
|
|
+ name = name.replace(/#/g, "$");
|
|
|
$fileName.val(name);
|
|
|
$fileExt.val(ext);
|
|
|
}, function (fileName) {
|
|
|
- console.log('fileName', $fileConstraintExt.val())
|
|
|
+ console.log('fileName', fileName, $fileConstraintExt.val())
|
|
|
var name = fileName.substring(0, fileName.lastIndexOf("."));
|
|
|
var ext = fileName.substring(fileName.lastIndexOf(".") + 1, fileName.length);
|
|
|
if ($fileConstraintExt) {
|