|
|
|
@@ -6,28 +6,36 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
// it. sessionStorage backs the last completed answer so a hard reload
|
|
|
|
|
// also recovers it. None of this leaks to the next browser session —
|
|
|
|
|
// ask history is intentionally ephemeral.
|
|
|
|
|
let _activeAsk = null; // {question, promise} while a request is in flight
|
|
|
|
|
let _lastAsk = null; // {question, text, sources, completedAt} after success
|
|
|
|
|
let _activeAsk = null; // {question, promise, startedAt} while in flight
|
|
|
|
|
let _lastAsk = null; // {question, text, sources, completedAt} after success
|
|
|
|
|
let _activeSearch = null; // {query, kind, promise} while in flight
|
|
|
|
|
let _lastSearch = null; // {query, kind, hits, selectedIdx, completedAt}
|
|
|
|
|
|
|
|
|
|
const SS_KEY = 'kb-last-ask';
|
|
|
|
|
const SS_ASK = 'kb-last-ask';
|
|
|
|
|
const SS_SEARCH = 'kb-last-search';
|
|
|
|
|
const LS_SPLIT = 'kb-split-pct'; // long-lived UI preference (not session)
|
|
|
|
|
|
|
|
|
|
function _loadLastFromSession() {
|
|
|
|
|
function _loadJson(storage, key, validator) {
|
|
|
|
|
try {
|
|
|
|
|
const raw = sessionStorage.getItem(SS_KEY);
|
|
|
|
|
const raw = storage.getItem(key);
|
|
|
|
|
if (!raw) return null;
|
|
|
|
|
const parsed = JSON.parse(raw);
|
|
|
|
|
if (parsed && typeof parsed.question === 'string') return parsed;
|
|
|
|
|
} catch (e) { /* corrupted, ignore */ }
|
|
|
|
|
return null;
|
|
|
|
|
return validator(parsed) ? parsed : null;
|
|
|
|
|
} catch (e) { return null; }
|
|
|
|
|
}
|
|
|
|
|
function _saveLastToSession(entry) {
|
|
|
|
|
try { sessionStorage.setItem(SS_KEY, JSON.stringify(entry)); }
|
|
|
|
|
function _saveJson(storage, key, value) {
|
|
|
|
|
try { storage.setItem(key, JSON.stringify(value)); }
|
|
|
|
|
catch (e) { /* quota or disabled, fine */ }
|
|
|
|
|
}
|
|
|
|
|
function _clearLastInSession() {
|
|
|
|
|
try { sessionStorage.removeItem(SS_KEY); } catch (e) { /* ignore */ }
|
|
|
|
|
function _clear(storage, key) {
|
|
|
|
|
try { storage.removeItem(key); } catch (e) { /* ignore */ }
|
|
|
|
|
}
|
|
|
|
|
if (!_lastAsk) {
|
|
|
|
|
_lastAsk = _loadJson(sessionStorage, SS_ASK, x => x && typeof x.question === 'string');
|
|
|
|
|
}
|
|
|
|
|
if (!_lastSearch) {
|
|
|
|
|
_lastSearch = _loadJson(sessionStorage, SS_SEARCH, x => x && typeof x.query === 'string' && Array.isArray(x.hits));
|
|
|
|
|
}
|
|
|
|
|
if (!_lastAsk) _lastAsk = _loadLastFromSession();
|
|
|
|
|
|
|
|
|
|
return Dep.extend({
|
|
|
|
|
|
|
|
|
@@ -98,10 +106,10 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
this.renderSourcesList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Recover ask state across view remounts (user navigated away and
|
|
|
|
|
// back). _activeAsk wins — there's still a request in flight, so
|
|
|
|
|
// re-show the progress panel and re-bind handlers. Otherwise
|
|
|
|
|
// _lastAsk replays the most recent answer in this browser session.
|
|
|
|
|
// Recover prior state across view remounts (user navigated away and
|
|
|
|
|
// back). Active in-flight wins; otherwise replay the last result
|
|
|
|
|
// from sessionStorage so the work the user already did doesn't
|
|
|
|
|
// disappear behind a tab switch.
|
|
|
|
|
if (this.mode === 'ask') {
|
|
|
|
|
if (_activeAsk) {
|
|
|
|
|
const $input = this.$el.find('input[data-name="query"]');
|
|
|
|
@@ -114,6 +122,19 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
if ($input.length) $input.val(_lastAsk.question);
|
|
|
|
|
this.renderAskAnswer(_lastAsk.text, _lastAsk.sources);
|
|
|
|
|
}
|
|
|
|
|
} else if (this.mode === 'search') {
|
|
|
|
|
if (_activeSearch) {
|
|
|
|
|
const $input = this.$el.find('input[data-name="query"]');
|
|
|
|
|
if ($input.length) $input.val(_activeSearch.query);
|
|
|
|
|
this.setLoading(true);
|
|
|
|
|
this._attachSearchHandlers(_activeSearch);
|
|
|
|
|
} else if (_lastSearch && _lastSearch.hits.length) {
|
|
|
|
|
const $input = this.$el.find('input[data-name="query"]');
|
|
|
|
|
if ($input.length) $input.val(_lastSearch.query);
|
|
|
|
|
const $kind = this.$el.find('select[data-name="kind"]');
|
|
|
|
|
if ($kind.length && _lastSearch.kind) $kind.val(_lastSearch.kind);
|
|
|
|
|
this.renderSearchResults(_lastSearch.hits, _lastSearch.selectedIdx || 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Focus the input on every render so users can start typing right away.
|
|
|
|
@@ -135,24 +156,53 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
runSearch: function (query, kind) {
|
|
|
|
|
// A new search invalidates the prior cached one.
|
|
|
|
|
_lastSearch = null;
|
|
|
|
|
_clear(sessionStorage, SS_SEARCH);
|
|
|
|
|
|
|
|
|
|
this.setLoading(true);
|
|
|
|
|
Espo.Ajax.postRequest('KnowledgeBase/action/search', {
|
|
|
|
|
const promise = Espo.Ajax.postRequest('KnowledgeBase/action/search', {
|
|
|
|
|
query: query,
|
|
|
|
|
kind: kind,
|
|
|
|
|
topK: 8,
|
|
|
|
|
}).then(res => {
|
|
|
|
|
this.setLoading(false);
|
|
|
|
|
this.renderSearchResults(res.hits || []);
|
|
|
|
|
});
|
|
|
|
|
_activeSearch = {query: query, kind: kind, promise: promise};
|
|
|
|
|
this._attachSearchHandlers(_activeSearch);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_attachSearchHandlers: function (search) {
|
|
|
|
|
const self = this;
|
|
|
|
|
search.promise.then(res => {
|
|
|
|
|
const hits = res.hits || [];
|
|
|
|
|
const entry = {
|
|
|
|
|
query: search.query,
|
|
|
|
|
kind: search.kind,
|
|
|
|
|
hits: hits,
|
|
|
|
|
selectedIdx: 0,
|
|
|
|
|
completedAt: Date.now(),
|
|
|
|
|
};
|
|
|
|
|
_lastSearch = entry;
|
|
|
|
|
_saveJson(sessionStorage, SS_SEARCH, entry);
|
|
|
|
|
if (_activeSearch === search) _activeSearch = null;
|
|
|
|
|
if (self.$el && self.$el.length) {
|
|
|
|
|
self.setLoading(false);
|
|
|
|
|
if (self.mode === 'search') {
|
|
|
|
|
self.renderSearchResults(hits);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
this.setLoading(false);
|
|
|
|
|
this.showError(err);
|
|
|
|
|
if (_activeSearch === search) _activeSearch = null;
|
|
|
|
|
if (self.$el && self.$el.length) {
|
|
|
|
|
self.setLoading(false);
|
|
|
|
|
self.showError(err);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
runAsk: function (message) {
|
|
|
|
|
// A new ask invalidates whatever last-result was on screen.
|
|
|
|
|
_lastAsk = null;
|
|
|
|
|
_clearLastInSession();
|
|
|
|
|
_clear(sessionStorage, SS_ASK);
|
|
|
|
|
|
|
|
|
|
this.setLoading(true);
|
|
|
|
|
// Ask goes through the full agent loop (search + rerank + LLM),
|
|
|
|
@@ -181,7 +231,7 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
completedAt: Date.now(),
|
|
|
|
|
};
|
|
|
|
|
_lastAsk = entry;
|
|
|
|
|
_saveLastToSession(entry);
|
|
|
|
|
_saveJson(sessionStorage, SS_ASK, entry);
|
|
|
|
|
if (_activeAsk === ask) _activeAsk = null;
|
|
|
|
|
if (self.$el && self.$el.length) {
|
|
|
|
|
self.stopAskProgress();
|
|
|
|
@@ -249,12 +299,13 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
renderSearchResults: function (hits) {
|
|
|
|
|
renderSearchResults: function (hits, selectedIdx) {
|
|
|
|
|
const $results = this.$el.find('.kb-results');
|
|
|
|
|
if (!hits.length) {
|
|
|
|
|
$results.html('<div class="text-muted">לא נמצאו תוצאות.</div>');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
const initialIdx = (typeof selectedIdx === 'number' && hits[selectedIdx]) ? selectedIdx : 0;
|
|
|
|
|
const kindHe = {law: 'חוק', regulation: 'תקנה', circular: 'חוזר'};
|
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
|
@@ -272,7 +323,7 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
const pub = h.published_at ? ' · פורסם ' + h.published_at : '';
|
|
|
|
|
const pageLabel = (isPdfBacked(h) && h.page_number)
|
|
|
|
|
? ` · <span class="label label-default">עמ׳ ${h.page_number}</span>` : '';
|
|
|
|
|
const activeClass = i === 0 ? 'panel-primary' : 'panel-default';
|
|
|
|
|
const activeClass = i === initialIdx ? 'panel-primary' : 'panel-default';
|
|
|
|
|
return `
|
|
|
|
|
<div class="kb-hit panel ${activeClass}" data-hit-idx="${i}"
|
|
|
|
|
style="margin-bottom:8px;cursor:pointer;">
|
|
|
|
@@ -285,20 +336,15 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
</div>`;
|
|
|
|
|
}).join('');
|
|
|
|
|
|
|
|
|
|
$results.html(`
|
|
|
|
|
<div class="row" style="margin:0;">
|
|
|
|
|
<div class="col-md-5" style="padding-right:0;max-height:86vh;overflow-y:auto;">
|
|
|
|
|
${listHtml}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-7 kb-search-preview" style="padding-left:0;">
|
|
|
|
|
<div class="kb-preview-slot"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
`);
|
|
|
|
|
$results.html(this._buildSplitShell({
|
|
|
|
|
leftHtml: `<div class="kb-search-list" style="height:100%;overflow-y:auto;padding-left:6px;">${listHtml}</div>`,
|
|
|
|
|
rightHtml: '<div class="kb-preview-slot" style="height:100%;"></div>',
|
|
|
|
|
}));
|
|
|
|
|
this._wireSplitter($results.find('.kb-split'));
|
|
|
|
|
|
|
|
|
|
// Cache hits on the view so click handlers can reach them.
|
|
|
|
|
this._searchHits = hits;
|
|
|
|
|
this.showSearchPreview(0);
|
|
|
|
|
this.showSearchPreview(initialIdx);
|
|
|
|
|
|
|
|
|
|
this.$el.find('.kb-hit').off('click').on('click', function () {
|
|
|
|
|
const idx = parseInt($(this).data('hit-idx'), 10);
|
|
|
|
@@ -307,6 +353,90 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
.removeClass('panel-primary').addClass('panel-default');
|
|
|
|
|
$(this).removeClass('panel-default').addClass('panel-primary');
|
|
|
|
|
self.showSearchPreview(idx);
|
|
|
|
|
if (_lastSearch && _lastSearch.hits === self._searchHits) {
|
|
|
|
|
_lastSearch.selectedIdx = idx;
|
|
|
|
|
_saveJson(sessionStorage, SS_SEARCH, _lastSearch);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// Returns the HTML for a flex-row split layout with a draggable
|
|
|
|
|
// 6px handle. The container's flex direction is forced LTR so the
|
|
|
|
|
// splitter math (clientX) doesn't get inverted by RTL — content
|
|
|
|
|
// inside each pane keeps its own direction.
|
|
|
|
|
_buildSplitShell: function ({leftHtml, rightHtml}) {
|
|
|
|
|
const pct = this._loadSplitPct();
|
|
|
|
|
return (
|
|
|
|
|
'<div class="kb-split" style="' +
|
|
|
|
|
'display:flex;flex-direction:row;direction:ltr;' +
|
|
|
|
|
'gap:0;height:86vh;align-items:stretch;">' +
|
|
|
|
|
' <div class="kb-split-left" style="' +
|
|
|
|
|
'flex:0 0 ' + pct + '%;min-width:200px;overflow:hidden;">' +
|
|
|
|
|
leftHtml +
|
|
|
|
|
' </div>' +
|
|
|
|
|
' <div class="kb-split-handle" title="גרור כדי לשנות חלוקה" style="' +
|
|
|
|
|
'flex:0 0 6px;background:#dde1e7;cursor:col-resize;' +
|
|
|
|
|
'border-left:1px solid #cbd0d8;border-right:1px solid #cbd0d8;' +
|
|
|
|
|
'transition:background 0.15s;"></div>' +
|
|
|
|
|
' <div class="kb-split-right" style="' +
|
|
|
|
|
'flex:1 1 auto;min-width:200px;overflow:hidden;">' +
|
|
|
|
|
rightHtml +
|
|
|
|
|
' </div>' +
|
|
|
|
|
'</div>'
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_loadSplitPct: function () {
|
|
|
|
|
try {
|
|
|
|
|
const v = parseFloat(localStorage.getItem(LS_SPLIT));
|
|
|
|
|
if (!isNaN(v) && v >= 15 && v <= 85) return v;
|
|
|
|
|
} catch (e) { /* ignore */ }
|
|
|
|
|
return 42;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_saveSplitPct: function (pct) {
|
|
|
|
|
try { localStorage.setItem(LS_SPLIT, String(pct)); }
|
|
|
|
|
catch (e) { /* ignore */ }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// Wires mousedown/move/up on the handle to resize the left pane.
|
|
|
|
|
// While dragging we cover any iframe with a transparent overlay so
|
|
|
|
|
// mouse events don't disappear into PDF.js. On mouseup the chosen
|
|
|
|
|
// ratio persists to localStorage.
|
|
|
|
|
_wireSplitter: function ($split) {
|
|
|
|
|
if (!$split.length) return;
|
|
|
|
|
const $handle = $split.find('.kb-split-handle');
|
|
|
|
|
const $left = $split.find('.kb-split-left');
|
|
|
|
|
const self = this;
|
|
|
|
|
$handle.on('mouseenter', () => $handle.css('background', '#b9c0cb'));
|
|
|
|
|
$handle.on('mouseleave', () => $handle.css('background', '#dde1e7'));
|
|
|
|
|
$handle.on('mousedown', function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
const rect = $split[0].getBoundingClientRect();
|
|
|
|
|
const $overlay = $('<div class="kb-drag-overlay">').css({
|
|
|
|
|
position: 'fixed',
|
|
|
|
|
inset: '0',
|
|
|
|
|
cursor: 'col-resize',
|
|
|
|
|
zIndex: 9999,
|
|
|
|
|
background: 'transparent',
|
|
|
|
|
});
|
|
|
|
|
$('body').append($overlay).css('user-select', 'none');
|
|
|
|
|
const onMove = function (ev) {
|
|
|
|
|
const x = ev.clientX - rect.left;
|
|
|
|
|
let pct = (x / rect.width) * 100;
|
|
|
|
|
pct = Math.max(15, Math.min(85, pct));
|
|
|
|
|
$left.css('flex', '0 0 ' + pct + '%');
|
|
|
|
|
self._dragPct = pct;
|
|
|
|
|
};
|
|
|
|
|
const onUp = function () {
|
|
|
|
|
$(document).off('mousemove', onMove).off('mouseup', onUp);
|
|
|
|
|
$overlay.remove();
|
|
|
|
|
$('body').css('user-select', '');
|
|
|
|
|
if (typeof self._dragPct === 'number') {
|
|
|
|
|
self._saveSplitPct(self._dragPct);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
$(document).on('mousemove', onMove).on('mouseup', onUp);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@@ -323,13 +453,14 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
+ encodeURIComponent(h.source_id)
|
|
|
|
|
+ '#page=' + encodeURIComponent(page);
|
|
|
|
|
$slot.html(`
|
|
|
|
|
<div style="direction:rtl;text-align:right;margin-bottom:6px;">
|
|
|
|
|
<span class="text-muted small">מציג עמ׳ ${page} של המסמך</span>
|
|
|
|
|
<div style="display:flex;flex-direction:column;height:100%;">
|
|
|
|
|
<div style="direction:rtl;text-align:right;margin-bottom:6px;flex:0 0 auto;">
|
|
|
|
|
<span class="text-muted small">מציג עמ׳ ${page} של המסמך</span>
|
|
|
|
|
</div>
|
|
|
|
|
<iframe class="kb-pdf-iframe" src="${url}"
|
|
|
|
|
style="flex:1 1 auto;width:100%;border:1px solid #ddd;background:#fafafa;"
|
|
|
|
|
title="מקור"></iframe>
|
|
|
|
|
</div>
|
|
|
|
|
<iframe class="kb-pdf-iframe"
|
|
|
|
|
src="${url}"
|
|
|
|
|
style="width:100%;height:82vh;border:1px solid #ddd;background:#fafafa;"
|
|
|
|
|
title="מקור"></iframe>
|
|
|
|
|
`);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
@@ -343,12 +474,12 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
? `<a href="${this.escape(h.source_url)}" target="_blank" rel="noopener">מקור ב-Wikisource</a>`
|
|
|
|
|
: '';
|
|
|
|
|
$slot.html(`
|
|
|
|
|
<div class="panel panel-default" style="direction:rtl;text-align:right;">
|
|
|
|
|
<div class="panel-heading">${this.escape(h.title || '')}</div>
|
|
|
|
|
<div class="panel-body" style="${bodyStyle};max-height:80vh;overflow-y:auto;">
|
|
|
|
|
<div class="panel panel-default" style="direction:rtl;text-align:right;height:100%;display:flex;flex-direction:column;">
|
|
|
|
|
<div class="panel-heading" style="flex:0 0 auto;">${this.escape(h.title || '')}</div>
|
|
|
|
|
<div class="panel-body" style="${bodyStyle};flex:1 1 auto;overflow-y:auto;">
|
|
|
|
|
${this.escape(h.content || '')}
|
|
|
|
|
</div>
|
|
|
|
|
${srcLink ? '<div class="panel-footer small">' + srcLink + '</div>' : ''}
|
|
|
|
|
${srcLink ? '<div class="panel-footer small" style="flex:0 0 auto;">' + srcLink + '</div>' : ''}
|
|
|
|
|
</div>
|
|
|
|
|
`);
|
|
|
|
|
},
|
|
|
|
@@ -437,32 +568,32 @@ define('modules/knowledge-base/views/kb/index', ['view'], function (Dep) {
|
|
|
|
|
+ encodeURIComponent(first.source_id)
|
|
|
|
|
+ '#page=' + encodeURIComponent(firstPage);
|
|
|
|
|
|
|
|
|
|
$results.html(`
|
|
|
|
|
<div class="row" style="margin:0;">
|
|
|
|
|
<div class="col-md-6" style="padding-right:0;">
|
|
|
|
|
<div class="kb-answer panel panel-info">
|
|
|
|
|
<div class="panel-body" style="direction:rtl;text-align:right;max-height:80vh;overflow-y:auto;">
|
|
|
|
|
${answerHtml}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="panel panel-default" style="direction:rtl;text-align:right;">
|
|
|
|
|
<div class="panel-heading"><strong>📎 מקורות</strong></div>
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
<div style="margin-bottom:6px;">${pickerItems}</div>
|
|
|
|
|
<div class="kb-page-links" style="font-size:0.9em;">
|
|
|
|
|
<span class="text-muted">עמודים רלוונטיים:</span> ${pageLinks}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
const leftHtml = `
|
|
|
|
|
<div style="height:100%;overflow-y:auto;padding-left:6px;">
|
|
|
|
|
<div class="kb-answer panel panel-info">
|
|
|
|
|
<div class="panel-body" style="direction:rtl;text-align:right;">
|
|
|
|
|
${answerHtml}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-6" style="padding-left:0;">
|
|
|
|
|
<iframe class="kb-pdf-iframe"
|
|
|
|
|
src="${initialUrl}"
|
|
|
|
|
style="width:100%;height:86vh;border:1px solid #ddd;background:#fafafa;"
|
|
|
|
|
title="מקור"></iframe>
|
|
|
|
|
<div class="panel panel-default" style="direction:rtl;text-align:right;">
|
|
|
|
|
<div class="panel-heading"><strong>📎 מקורות</strong></div>
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
<div style="margin-bottom:6px;">${pickerItems}</div>
|
|
|
|
|
<div class="kb-page-links" style="font-size:0.9em;">
|
|
|
|
|
<span class="text-muted">עמודים רלוונטיים:</span> ${pageLinks}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
`);
|
|
|
|
|
`;
|
|
|
|
|
const rightHtml = `
|
|
|
|
|
<iframe class="kb-pdf-iframe"
|
|
|
|
|
src="${initialUrl}"
|
|
|
|
|
style="width:100%;height:100%;border:1px solid #ddd;background:#fafafa;"
|
|
|
|
|
title="מקור"></iframe>
|
|
|
|
|
`;
|
|
|
|
|
$results.html(this._buildSplitShell({leftHtml, rightHtml}));
|
|
|
|
|
this._wireSplitter($results.find('.kb-split'));
|
|
|
|
|
|
|
|
|
|
const self = this;
|
|
|
|
|
this.$el.find('.kb-pdf-pick').off('click').on('click', function () {
|
|
|
|
|