Hide dragged tabs.
This commit is contained in:
parent
809a7b6917
commit
2f57992d5a
3 changed files with 2 additions and 3 deletions
|
@ -50,7 +50,6 @@
|
||||||
width: 0;
|
width: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
flex-grow: 0;
|
flex-grow: 0;
|
||||||
overflow: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&.hovering {
|
&.hovering {
|
||||||
|
|
|
@ -9,7 +9,7 @@ define([
|
||||||
var draggedTab = null;
|
var draggedTab = null;
|
||||||
tabContainer.on("dragstart", function(e) {
|
tabContainer.on("dragstart", function(e) {
|
||||||
if (!e.target.matches(".tab")) return;
|
if (!e.target.matches(".tab")) return;
|
||||||
e.target.style.opacity = .4;
|
e.target.style.opacity = 0;
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
e.target.addClass("dragging");
|
e.target.addClass("dragging");
|
||||||
}, 50);
|
}, 50);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "Caret",
|
"name": "Caret",
|
||||||
"description": "Professional text editing for Chrome and Chrome OS",
|
"description": "Professional text editing for Chrome and Chrome OS",
|
||||||
"version": "1.3.18",
|
"version": "1.3.19",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"icons": {
|
"icons": {
|
||||||
"128": "icon-128.png"
|
"128": "icon-128.png"
|
||||||
|
|
Loading…
Reference in a new issue