mirror of
https://github.com/JanGross/quicknotes.git
synced 2025-12-01 07:37:18 +01:00
Unset filter color when select a note..
This commit is contained in:
@@ -614,7 +614,11 @@ View.prototype = {
|
|||||||
$('.notes-grid').isotope({ filter: function() {
|
$('.notes-grid').isotope({ filter: function() {
|
||||||
var itemId = parseInt($(this).children().data('id'), 10);
|
var itemId = parseInt($(this).children().data('id'), 10);
|
||||||
return id == itemId;
|
return id == itemId;
|
||||||
} });
|
}});
|
||||||
|
var oldColorTool = $('#app-navigation .circle-toolbar.icon-checkmark');
|
||||||
|
$.each(oldColorTool, function(i, oct) {
|
||||||
|
$(oct).removeClass('icon-checkmark');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Handle colors.
|
// Handle colors.
|
||||||
|
|||||||
Reference in New Issue
Block a user