Skip to content
This repository has been archived by the owner on Feb 15, 2019. It is now read-only.

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines committed Sep 10, 2014
1 parent 3c41864 commit 7e265cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion resources/testweb/creator_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ $(document).ready(function() {

var short_desc = jsonObj['description'];
console.log('short_desc ' + short_desc);
$('#shortDescriptionInput').text(short_desc);
if (short_desc != null) {
$('#shortDescriptionInput').text(short_desc);
}



Expand Down

0 comments on commit 7e265cf

Please sign in to comment.