Last active
August 19, 2016 14:07
-
-
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...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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