mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-01 21:21:50 +08:00
Remove unneeded function from utils.js [SCI-819]
This commit is contained in:
parent
4065be9e4e
commit
0d01a4b2bd
1 changed files with 0 additions and 29 deletions
|
@ -215,32 +215,3 @@ function initPageTutorialSteps(pageFirstStepN, pageLastStepN, nextPagePath,
|
|||
});
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Add redirection links on dropdown elements. You must specify 'href'
|
||||
* attribute yourself, and the dropdown elments which don't have them, will get
|
||||
* '#' by default.
|
||||
* @param {number} selectedIdx Index of element to be selected
|
||||
* @param {string} urlParam URL parameter to pass to the link URLs
|
||||
* @return {Object} This
|
||||
*/
|
||||
$.fn.makeDropdownOptionsLinks = function(selectedIdx, urlParam) {
|
||||
selectedIdx = _.isUndefined(selectedIdx) ? 1 : selectedIdx;
|
||||
|
||||
$(this).change(function() {
|
||||
window.location.href = addParam($(this).find('option:selected')
|
||||
.attr('href'), urlParam);
|
||||
});
|
||||
|
||||
$(this).find('option')
|
||||
.each(function() {
|
||||
if ($(this).is('[href]')) {
|
||||
$(this).addClass('link-look');
|
||||
} else {
|
||||
$(this).attr('href', '#');
|
||||
}
|
||||
})
|
||||
.eq(selectedIdx).attr('selected', true);
|
||||
|
||||
return this;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue