Restream/redmine_undev_git

View on GitHub
assets/javascripts/web_hook_urls.js

Summary

Maintainability
A
0 mins
Test Coverage
$(document).ready(function() {
  $('input.web-hook-url').focus(function () {
    $(this).select().mouseup(function (e) {
      e.preventDefault();
      $(this).unbind("mouseup");
    });
  });
});