/* Simple Image Block */ SirTrevor.Blocks.SearchResults = (function(){ var template = _.template([ 'Search Query Params:' ].join("\n")); return SirTrevor.Block.extend({ type: "search_results", title: function() { return "Search Results"; }, editorHTML: function() { return template(this); }, icon_name: 'search_results', loadData: function(data){ this.$('.search').val(data.search); } }); })();