@@ -10,7 +10,7 @@ const createButton = (id, name) => {
1010}
1111
1212function createToolBarRBContainer ( mind ) {
13- const toolBarRBContainer = document . createElement ( 'toolbar ' )
13+ const toolBarRBContainer = document . createElement ( 'div ' )
1414 const fc = createButton ( 'fullscreen' , 'full' )
1515 const gc = createButton ( 'toCenter' , 'living' )
1616 const zo = createButton ( 'zoomout' , 'move' )
@@ -22,7 +22,7 @@ function createToolBarRBContainer(mind) {
2222 toolBarRBContainer . appendChild ( zo )
2323 toolBarRBContainer . appendChild ( zi )
2424 // toolBarRBContainer.appendChild(percentage)
25- toolBarRBContainer . className = 'rb'
25+ toolBarRBContainer . className = 'mind-elixir-toolbar rb'
2626 fc . onclick = ( ) => {
2727 mind . container . requestFullscreen ( )
2828 }
@@ -40,15 +40,15 @@ function createToolBarRBContainer(mind) {
4040 return toolBarRBContainer
4141}
4242function createToolBarLTContainer ( mind ) {
43- const toolBarLTContainer = document . createElement ( 'toolbar ' )
43+ const toolBarLTContainer = document . createElement ( 'div ' )
4444 const l = createButton ( 'tbltl' , 'left' )
4545 const r = createButton ( 'tbltr' , 'right' )
4646 const s = createButton ( 'tblts' , 'side' )
4747
4848 toolBarLTContainer . appendChild ( l )
4949 toolBarLTContainer . appendChild ( r )
5050 toolBarLTContainer . appendChild ( s )
51- toolBarLTContainer . className = 'lt'
51+ toolBarLTContainer . className = 'mind-elixir-toolbar lt'
5252 l . onclick = ( ) => {
5353 mind . initLeft ( )
5454 }
0 commit comments