sigesp 0.8.96-20220530 → 0.8.97-20220614
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/sigesp.umd.js +1 -2
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/sigesp.service.js +2 -3
- package/fesm2015/sigesp.js +1 -2
- package/fesm2015/sigesp.js.map +1 -1
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -6144,8 +6144,7 @@
|
|
|
6144
6144
|
* @author Miguel Ramírez
|
|
6145
6145
|
*/
|
|
6146
6146
|
SigespService.prototype.onlyNumbers = function (event) {
|
|
6147
|
-
|
|
6148
|
-
if (!isNaN(+event.key) || event.keyCode == 8) {
|
|
6147
|
+
if (!isNaN(+event.key) && event.keyCode != 32) {
|
|
6149
6148
|
return true;
|
|
6150
6149
|
}
|
|
6151
6150
|
return false;
|