mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Style tweaks
Follows strictly jshint and jscs rules.
This commit is contained in:
parent
fbc4c5e82e
commit
22b8b6ab20
8 changed files with 23 additions and 19 deletions
|
|
@ -61,7 +61,8 @@ BlazeComponent.extendComponent({
|
|||
var list = $('#js-list-' + this.data()._id);
|
||||
var nextList = list[isReverse ? 'prev' : 'next']('.js-list').get(0) ||
|
||||
$('.js-list:' + (isReverse ? 'last' : 'first')).get(0);
|
||||
var nextListComponent = BlazeComponent.getComponentForElement(nextList);
|
||||
var nextListComponent =
|
||||
BlazeComponent.getComponentForElement(nextList);
|
||||
|
||||
// XXX Get the real position
|
||||
var position = 'bottom';
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
ListComponent = BlazeComponent.extendComponent({
|
||||
BlazeComponent.extendComponent({
|
||||
template: function() {
|
||||
return 'list';
|
||||
},
|
||||
|
|
@ -27,19 +27,19 @@ ListComponent = BlazeComponent.extendComponent({
|
|||
if (Meteor.user().isBoardMember()) {
|
||||
var $cards = this.$('.js-minicards');
|
||||
$cards.sortable({
|
||||
connectWith: ".js-minicards",
|
||||
connectWith: '.js-minicards',
|
||||
tolerance: 'pointer',
|
||||
appendTo: '.js-lists',
|
||||
helper: "clone",
|
||||
helper: 'clone',
|
||||
items: '.js-minicard:not(.placeholder, .hide, .js-composer)',
|
||||
placeholder: 'minicard placeholder',
|
||||
start: function (event, ui) {
|
||||
start: function(event, ui) {
|
||||
$('.minicard.placeholder').height(ui.item.height());
|
||||
Popup.close();
|
||||
},
|
||||
stop: function(event, ui) {
|
||||
// To attribute the new index number, we need to get the dom element of
|
||||
// the previous and the following card -- if any.
|
||||
// To attribute the new index number, we need to get the dom element
|
||||
// of the previous and the following card -- if any.
|
||||
var cardDomElement = ui.item.get(0);
|
||||
var prevCardDomElement = ui.item.prev('.js-minicard').get(0);
|
||||
var nextCardDomElement = ui.item.next('.js-minicard').get(0);
|
||||
|
|
@ -57,7 +57,7 @@ ListComponent = BlazeComponent.extendComponent({
|
|||
|
||||
Utils.liveEvent('mouseover', function($el) {
|
||||
$el.find('.js-member-droppable').droppable({
|
||||
hoverClass: "draggable-hover-card",
|
||||
hoverClass: 'draggable-hover-card',
|
||||
accept: '.js-member',
|
||||
drop: function(event, ui) {
|
||||
var memberId = Blaze.getData(ui.draggable.get(0)).userId;
|
||||
|
|
@ -67,7 +67,7 @@ ListComponent = BlazeComponent.extendComponent({
|
|||
});
|
||||
|
||||
$el.find('.js-member-droppable').droppable({
|
||||
hoverClass: "draggable-hover-card",
|
||||
hoverClass: 'draggable-hover-card',
|
||||
accept: '.js-label',
|
||||
drop: function(event, ui) {
|
||||
var labelId = Blaze.getData(ui.draggable.get(0))._id;
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ Template.listActionPopup.events({
|
|||
// XXX We need a better API and architecture here. See
|
||||
// https://github.com/peerlibrary/meteor-blaze-components/issues/19
|
||||
var listDom = document.getElementById('js-list-' + this._id);
|
||||
var listComponent = Blaze.getView(listDom).templateInstance().get('component');
|
||||
listComponent.openForm();
|
||||
var listInstance = Blaze.getView(listDom).templateInstance();
|
||||
listInstance.get('component').openForm();
|
||||
Popup.close();
|
||||
},
|
||||
'click .js-list-subscribe': function() {},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue