open pads in a new tab

pull/1/head
ansuz 2017-01-04 16:41:47 +01:00
parent c380ecfcd9
commit 5a90d20cff
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ define([
var displayCreateButtons = function () {
var $parent = $('#buttons');
Config.availablePadTypes.forEach(function (el) {
$('#create-' + el).detach().appendTo($parent).show();
$('#create-' + el).detach().appendTo($parent).attr('target', '_blank').show();
});
};