projects
/
freeside.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
graphical selection of deployment zones and automatic block lookup, #30260
[freeside.git]
/
httemplate
/
elements
/
tr-select-expire_months.html
1
<& tr-select-months.html, @_ &>
2
<script>
3
// disable the pkgpart selector if it's set to zero months
4
$().ready(function() {
5
$('#expire_months').on('change', function() {
6
$('#change_to_pkgpart').prop('disabled', this.value == 0);
7
})
8
.trigger('change');
9
});
10
</script>