1
0
Fork 0

fixed issue #991 - database search view broken

This commit is contained in:
Heiko Kernbach 2014-08-21 11:15:00 +02:00
parent a598c421ba
commit aedebfda20
1 changed files with 4 additions and 1 deletions

View File

@ -58,6 +58,7 @@
searchString : '',
currentDB : this.currentDB
}));
this.replaceSVGs();
return this;
},
@ -205,8 +206,10 @@
);
$(this.el).html(this.template.render({
collection : reducedCollection,
searchString : searchString
searchString : searchString,
currentDB : this.currentDB
}));
this.replaceSVGs();
//after rendering, get the "new" element
searchInput = $('#databaseSearchInput');