Skip to content

Instantly share code, notes, and snippets.

@hoanganh25991
Last active August 19, 2016 14:07
Show Gist options
  • Save hoanganh25991/c4a0c189793b3eb5e8894585e75796e6 to your computer and use it in GitHub Desktop.
Save hoanganh25991/c4a0c189793b3eb5e8894585e75796e6 to your computer and use it in GitHub Desktop.
options [a,b,c,..], if has a > use a, if not check b, use b, if not check c, use c...
//refactor code
var findWhere = ['a.ewEdit', 'a.ewView'];
var isBinded = false;
var findIndex = 0;
while(!isBinded && findIndex < findWhere.length){
findIndex++;
// a = row.find('a').find(findWhere[findIndex]);
a = row.find(findWhere[findIndex]);
aHref = a.attr('href');
moveToLink = aHref ? aHref : false;
if(moveToLink){
row.on('click', function(){
window.location = moveToLink;
});
isBinded = true;
}
}
var row = $(this);
var a, aHref, moveToLink;
a = row.find('a.ewEdit');
aHref = a.attr('href');
moveToLink = aHref ? aHref : false;
if(moveToLink){
row.on('click', function(){
window.location = moveToLink;
});
return;
}
//check if this row allow 'move to view'
a = row.find('a.ewView');
aHref = a.attr('href');
moveToLink = aHref ? aHref : false;
if(moveToLink){
row.on('click', function(){
window.location = moveToLink;
});
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment