Changeset 3c67157 in github


Ignore:
Timestamp:
May 14, 2012 2:22:00 PM (13 months ago)
Author:
Aleksander Machniak <alec@…>
Branches:
master, HEAD, dev-browser-capabilities, pdo
Children:
19cc5b9
Parents:
435d55e
Message:

Remove 'focused' class on blur

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/js/list.js

    r32afefb8 r3c67157  
    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.