From 0eaec9d2814aa328edff04f1f38763c483bed774 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Fri, 9 Dec 2016 13:59:09 +0000 Subject: [PATCH] =?UTF-8?q?=D0=B2=20=D1=84=D0=B8=D0=BB=D1=8C=D1=82=D1=80?= =?UTF-8?q?=D0=B5=20=D0=B0=D0=B1=D0=BE=D0=BD=D0=B5=D0=BD=D1=82=D0=BE=D0=B2?= =?UTF-8?q?=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20=D0=BB=D0=BE?= =?UTF-8?q?=D0=B3=D0=B8=D0=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/js/my.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/my.js b/static/js/my.js index f97b2f5..bc038fc 100644 --- a/static/js/my.js +++ b/static/js/my.js @@ -50,7 +50,7 @@ $(document).ajaxError(function (ev, jqXHR, ajaxSettings, thrownError) { $.getJSON(settings.url, {'s': this.value}, function (r) { selectul.empty(); r.forEach(function (o) { - var li = $('
  • ' + o.fio + '
  • '); + var li = $('
  • ' + o.name + ": " + o.fio + '
  • '); selectul.append(li); li.on('click', selectajax_click) });