Added Refine.showLeftPanel() (#3716)
Added the Refine.showLeftPanel() function.
This commit is contained in:
parent
50a905e9da
commit
00b108865f
@ -37,6 +37,8 @@ class Facet {
|
|||||||
this._config = config;
|
this._config = config;
|
||||||
this._options = options || {};
|
this._options = options || {};
|
||||||
this._minimizeState = false;
|
this._minimizeState = false;
|
||||||
|
|
||||||
|
Refine.showLeftPanel();
|
||||||
};
|
};
|
||||||
|
|
||||||
_minimize() {
|
_minimize() {
|
||||||
|
@ -182,6 +182,11 @@ Refine._showHideLeftPanel = function() {
|
|||||||
resizeAll();
|
resizeAll();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Refine.showLeftPanel = function() {
|
||||||
|
$('div#body').removeClass("hide-left-panel");
|
||||||
|
resizeAll();
|
||||||
|
};
|
||||||
|
|
||||||
Refine.setTitle = function(status) {
|
Refine.setTitle = function(status) {
|
||||||
var title = theProject.metadata.name + " - OpenRefine";
|
var title = theProject.metadata.name + " - OpenRefine";
|
||||||
if (status) {
|
if (status) {
|
||||||
|
Loading…
Reference in New Issue
Block a user