Commit dd735e00 by Csók Tamás

removed one extra return

parent 3bff1bcd
...@@ -597,7 +597,7 @@ function clientInstalledAction(location) { ...@@ -597,7 +597,7 @@ function clientInstalledAction(location) {
$(function() { $(function() {
$(document).on("click", "#client-check-button", function(event) { $(document).on("click", "#client-check-button", function(event) {
var connectUri = $('#connect-uri').val(); var connectUri = $('#connect-uri').val();
clientInstalledAction(connectUri); return false; clientInstalledAction(connectUri);
return false; return false;
}); });
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment