Merge pull request #138 from pbondoer/staging

Fix poll auto-focus inputs
pull/1/head
ansuz 8 years ago committed by GitHub
commit 5fd4870b8b

@ -491,7 +491,7 @@ var ready = function (info, userid, readOnly) {
APP.$createRow = $('#create-option').click(function () { APP.$createRow = $('#create-option').click(function () {
Render.createRow(proxy, function (empty, id) { Render.createRow(proxy, function (empty, id) {
change(null, null, null, null, function() { change(null, null, null, null, function() {
$('.edit[data-rt-id="' + id + '"]').click(); handleSpan($('.edit[data-rt-id="' + id + '"]')[0]);
}); });
}); });
}); });
@ -499,7 +499,7 @@ var ready = function (info, userid, readOnly) {
APP.$createCol = $('#create-user').click(function () { APP.$createCol = $('#create-user').click(function () {
Render.createColumn(proxy, function (empty, id) { Render.createColumn(proxy, function (empty, id) {
change(null, null, null, null, function() { change(null, null, null, null, function() {
$('.lock[data-rt-id="' + id + '"]').click(); handleSpan($('.lock[data-rt-id="' + id + '"]')[0]);
}); });
}); });
}); });

Loading…
Cancel
Save