define(function(require) {
- /* globals gettext */
'use strict';
var _ = require('libs/underscore'),
},
show: function() {
this.setElement(this.template(_.extend({
- executeButtonText: gettext('Submit'),
- cancelButtonText: gettext('Cancel')
+ executeButtonText: null,
+ cancelButtonText: null
}, this.options)));
var body = this.$('.modal-body');
this.$el.modal({backdrop: 'static'});
this.$el.modal('show');
- this.$('textarea').focus();
+ this.$('textarea, input').first().focus();
},
onExecute: function(e) {
e.preventDefault();