Aleksander Machniak
2015-04-18 0f797eddd81762db824c3dd835914ada460b622b
Fix incorrect filter data after filter delete (#1490356)
Fix missing position idicator in Larry skin when dragging a filter
3 files modified
13 ■■■■■ changed files
plugins/managesieve/Changelog 2 ●●●●● patch | view | raw | blame | history
plugins/managesieve/managesieve.js 7 ●●●●● patch | view | raw | blame | history
plugins/managesieve/skins/larry/managesieve.css 4 ●●●● patch | view | raw | blame | history
plugins/managesieve/Changelog
@@ -1,4 +1,6 @@
- Add option to define default vacation interval
- Fix missing position idicator in Larry skin when dragging a filter
- Fix incorrect filter data after filter delete (#1490356)
* version 8.3 [2015-03-12]
-----------------------------------------------------------
plugins/managesieve/managesieve.js
@@ -226,7 +226,6 @@
  this.set_busy(true);
  switch (action) {
    // Delete filter row
    case 'del':
      var id = o.id, list = this.filters_list;
@@ -250,8 +249,10 @@
        $(this).unbind();
        // update row id
        if (rowid > id)
          $(this).attr('id', 'rcmrow' + (rowid-1));
        if (rowid > id) {
          this.uid = rowid - 1;
          $(this).attr('id', 'rcmrow' + this.uid);
        }
      });
      list.init();
plugins/managesieve/skins/larry/managesieve.css
@@ -67,13 +67,13 @@
#filterslist tbody tr.filtermoveup td
{
  border-top: 2px dotted #555;
  border-top: 2px dotted #555 !important;
  padding-top: 5px;
}
#filterslist tbody tr.filtermovedown td
{
  border-bottom: 2px dotted #555;
  border-bottom: 2px dotted #555 !important;
  padding-bottom: 4px;
}