Skip to content

Commit

Permalink
fix for swagger-api#261
Browse files Browse the repository at this point in the history
  • Loading branch information
fehguy committed Jul 17, 2013
1 parent 69f51f1 commit e24fb25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 5 additions & 0 deletions src/main/coffeescript/view/OperationView.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ class OperationView extends Backbone.View
if(o.value? && jQuery.trim(o.value).length > 0)
map[o.name] = o.value

for o in form.find(".body-textarea,.parameter")
if(o.value? && jQuery.trim(o.value).length > 0)
console.log o.name + ", " + o.value
map[o.name] = encodeURI(o.value)

console.log map

opts.responseContentType = $("div select[name=responseContentType]", $(@el)).val()
Expand Down
5 changes: 0 additions & 5 deletions src/main/html/css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -1759,29 +1759,24 @@ pre code {
}

.info_title {
padding-left: 25px;
padding-bottom: 10px;
font-weight: bold;
font-size: 25px;
}

.info_description {
padding-left: 25px;
padding-bottom: 10px;
font-size: 15px;
}

.info_tos {
padding-left: 25px;
padding-bottom: 5px;
}

.info_license {
padding-left: 25px;
padding-bottom: 5px;
}

.info_contact {
padding-left: 25px;
padding-bottom: 5px;
}

0 comments on commit e24fb25

Please sign in to comment.