Skip to content

Commit

Permalink
#119 allow to write empty string in web ui
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernard31 committed Apr 19, 2016
1 parent 4559b34 commit 022c8f4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -149,7 +149,7 @@ angular.module('resourceDirectives', [])
e.preventDefault();
var value = $('#writeInputValue').val();

if(value) {
if(value != undefined) {
$('#writeModal').modal('hide');

var rsc = {};
Expand Down

0 comments on commit 022c8f4

Please sign in to comment.