Changeset 5dfd42b in github


Ignore:
Timestamp:
May 15, 2012 2:28:07 AM (12 months ago)
Author:
Aleksander Machniak <alec@…>
Branches:
release-0.8
Children:
a5fc70f
Parents:
fc67e008
git-author:
Aleksander Machniak <alec@…> (05/14/12 14:22:00)
git-committer:
Aleksander Machniak <alec@…> (05/15/12 02:28:07)
Message:

Remove 'focused' class on blur

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/js/list.js

    r32afefb8 r5dfd42b  
    253253    id = this.selection[n]; 
    254254    if (this.rows[id] && this.rows[id].obj) { 
    255       $(this.rows[id].obj).removeClass('selected').addClass('unfocused'); 
     255      $(this.rows[id].obj).removeClass('selected focused').addClass('unfocused'); 
    256256    } 
    257257  } 
     
    612612    for (i=0, len=rows.length-1; i<len; i++) 
    613613      if (rows[i].id && String(rows[i].id).match(/^rcmrow([a-z0-9\-_=\+\/]+)/i) && this.rows[RegExp.$1] != null) 
    614             return RegExp.$1; 
     614        return RegExp.$1; 
    615615  } 
    616616 
Note: See TracChangeset for help on using the changeset viewer.