All Downloads are FREE. Search and download functionalities are using the official Maven repository.

swagger-ui.swagger_bak.patch.js Maven / Gradle / Ivy

Go to download

Epikos is a Rest Serivce framework which can be extend to develop any other Rest API/Services. For more detail please checkout github (https://github.com/epikosrest/epikos.git)

There is a newer version: 0.0.7.8.1
Show newest version
$("#input_apiKey").parent().replaceWith(
    "
" + "
"); $('#txtUsername').change(addBasicAuth); $('#txtPassword').change(addBasicAuth); function addBasicAuth() { var username = $('#txtUsername').val().replace(/^\s+|\s+$/gm, ''); //trim var password = $('#txtPassword').val().replace(/^\s+|\s+$/gm, ''); if (username && password) { window.authorizations.add("basic", new PasswordAuthorization("basic", username, password)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy