Wacom stu-430签名捕获太慢

时间:2016-05-18 10:59:56

标签: javascript digital-signature electronic-signature wacom

我在配置Wacom数位板签名时遇到问题。我没有问题就做了这个例子,但是当我把它集成到我的程序中时,它就破了。

问题是,当我点击“签名”按钮时,需要5-10秒才能显示签名捕获。在此之后,它运行正常。

我没有对这个例子做过很多改变;这是我修改过的代码的一部分:

(function($) {
    $(function() {
        var boton_firma = $('.captura_wacom');
        boton_firma.prop('disabled', false);
        boton_firma.on('click', init_firma);
    });
})(jQuery);

function init_firma() {
    var signatureForm = new SignatureForm($(this).parent().find('.fichero_firma').get(0), $(this));
    signatureForm.connect();
}

当我暂停这个过程时,它总是停在一个名为BigInt.js的wacom的js包含中。

1 个答案:

答案 0 :(得分:2)

最后我评论了demobuttons.js的一部分(wacom示例),它现在运行正常,无需等待

以下示例中的行标记为{<---

try {
    if (m_usingEncryption) {
        //m_tablet.startCapture(0xc0ffee); <---
    }
} catch (e) {
    m_usingEncryption = false;
}
// Enable the pen data on the screen (if not already)
m_tablet.setInkingMode(0x01);