define(['jquery', 'underscore', 'app', 'views/abstract/modalView', 'text!tpl/default/linkgrabber.html'], function($, _, App, modalView, template) { // Modal dialog for package adding - triggers package:added when package was added return modalView.extend({ events: { 'click .btn-success': 'addPackage', 'keypress #inputPackageName': 'addOnEnter' }, template: _.compile(template), initialize: function() { // Inherit parent events this.events = _.extend({}, modalView.prototype.events,this.events); }, renderContent: function() { return $('