* hover over vst instead of click, and fix placement of midi help link
This commit is contained in:
parent
d62655cbd2
commit
0416ad01f1
|
|
@ -65,9 +65,17 @@
|
|||
timeout = null;
|
||||
}
|
||||
waitForBubbleHover($(container))
|
||||
timeout = setTimeout(function() {$parent.btOff()}, 3000)
|
||||
timeout = setTimeout(function() {/**$parent.btOff()*/}, 3000)
|
||||
}
|
||||
});
|
||||
|
||||
$parent.hoverIntent({
|
||||
over: function() {
|
||||
$parent.btOn();
|
||||
},
|
||||
out: function() {
|
||||
|
||||
}});
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -216,8 +216,11 @@ ConfigureTracksStore = @ConfigureTracksStore
|
|||
|
||||
if isAudio
|
||||
activeElement = @renderAudio()
|
||||
scanHelpRight = `<a className="dont-see-plugin right-side" onClick={this.dontSeePlugin}>Don't see your plug-in in the list above?</a>`
|
||||
else
|
||||
activeElement = @renderMidi()
|
||||
scanHelpLeft = `<a className="dont-see-plugin left-side" onClick={this.dontSeePlugin}>Don't see your plug-in in the list above?</a>`
|
||||
|
||||
|
||||
if !@state.configureTracks?.newTrack
|
||||
action = 'CLOSE'
|
||||
|
|
@ -225,7 +228,6 @@ ConfigureTracksStore = @ConfigureTracksStore
|
|||
else
|
||||
cancelBtn = `<a onClick={this.onCancel} className="button-grey">CANCEL</a>`
|
||||
|
||||
scanHelp = `<a className="dont-see-plugin" onClick={this.dontSeePlugin}>Don't see your plug-in in the list above?</a>`
|
||||
|
||||
`<div>
|
||||
<div className="content-head">
|
||||
|
|
@ -237,9 +239,10 @@ ConfigureTracksStore = @ConfigureTracksStore
|
|||
{activeElement}
|
||||
|
||||
<div className="actions">
|
||||
{scanHelpLeft}
|
||||
{cancelBtn}
|
||||
<a onClick={this.doClose} className="button-orange">{action}</a>
|
||||
{scanHelp}
|
||||
{scanHelpRight}
|
||||
</div>
|
||||
</div>
|
||||
</div>`
|
||||
|
|
|
|||
|
|
@ -20,7 +20,13 @@
|
|||
font-size: 12px;
|
||||
margin-top: 2px;
|
||||
position: absolute;
|
||||
right: 60px;
|
||||
|
||||
&.left-side{
|
||||
left:35px;
|
||||
}
|
||||
&.right-side {
|
||||
right: 60px;
|
||||
}
|
||||
}
|
||||
.initial-scan {
|
||||
margin-top:20px;
|
||||
|
|
|
|||
Loading…
Reference in New Issue