nooline/nooline

View on GitHub
common/js/nooline/views/content-snippet-view/confirm-verify.js

Summary

Maintainability
A
0 mins
Test Coverage
// Boilerplate to load this file in both CJS and AMD environs.
define('common/js/nooline/views/content-snippet-view/confirm-verify',
  [],
  function () {

  var N = this.Nooline;

  N.Views.ContentSnippetView.prototype.confirmVerify = function () {

    var event = this.getOption('event');

    this.cancelVerify();

    this.trigger(event);

  };

});