mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Format the source code
In order to equivalent with WSO2 coding standards modified the source code
This commit is contained in:
parent
18b1f7830d
commit
0ce103e1ad
@ -74,13 +74,13 @@ if (!user) {
|
||||
} else {
|
||||
result = 400;
|
||||
}
|
||||
}else if (uriMatcher.match("/{context}/api/devices/sketch/generate_link")) {
|
||||
} else if (uriMatcher.match("/{context}/api/devices/sketch/generate_link")) {
|
||||
|
||||
if (!request.getContent()){
|
||||
log.error("Request Payload Is Empty");
|
||||
// HTTP status code 400 refers to - Bad request.
|
||||
result = 400;
|
||||
}else{
|
||||
} else{
|
||||
deviceType = request.getContent()["deviceType"];
|
||||
queryString = "?deviceName=" + request.getContent()["deviceName"] +"&deviceType="+
|
||||
request.getContent()["deviceType"]+"&sketchType="+request.getContent()["sketchType"];
|
||||
|
||||
@ -52,22 +52,21 @@ function submitForm(formId) {
|
||||
uriencodedQueryStr += prefix + input.attr("id") + "=" + input.val();
|
||||
} else if (input.data("param-type") == "form") {
|
||||
var prefix = (uriencodedFormStr == "") ? "" : "&";
|
||||
if (input.attr("type") == "checkbox" || input.attr("type") == "radio"){
|
||||
|
||||
if (isItemSelected == undefined){
|
||||
if (input.attr("type") == "checkbox" || input.attr("type") == "radio") {
|
||||
if (isItemSelected == undefined) {
|
||||
isItemSelected = false;
|
||||
}
|
||||
if (input.is(':checked')){
|
||||
if (input.is(':checked')) {
|
||||
isItemSelected = true;
|
||||
uriencodedFormStr += prefix + input.attr("name") + "=" + input.val();
|
||||
}
|
||||
}else{
|
||||
} else {
|
||||
uriencodedFormStr += prefix + input.attr("id") + "=" + input.val();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
if (isItemSelected === false){
|
||||
if (isItemSelected === false) {
|
||||
title.html("Please Select One Option");
|
||||
statusIcon.attr("class", defaultStatusClasses + " fw-error");
|
||||
$(modalPopupContent).html(content.html());
|
||||
|
||||
Loading…
Reference in New Issue
Block a user