2012-04-11 05:32:41 +02:00
|
|
|
(function($) {
|
|
|
|
$.entwine('ss', function($){
|
|
|
|
$('#Form_EditForm_RedirectionType input').entwine({
|
|
|
|
onmatch: function() {
|
|
|
|
var self = $(this);
|
|
|
|
if(self.attr('checked')) this.toggle();
|
|
|
|
this._super();
|
|
|
|
},
|
2012-05-14 01:43:55 +02:00
|
|
|
onunmatch: function() {
|
|
|
|
this._super();
|
|
|
|
},
|
2012-04-11 05:32:41 +02:00
|
|
|
onclick: function() {
|
|
|
|
this.toggle();
|
|
|
|
},
|
|
|
|
toggle: function() {
|
|
|
|
if($(this).attr('value') == 'Internal') {
|
2015-11-17 17:22:49 +01:00
|
|
|
$('#Form_EditForm_ExternalURL_Holder').hide();
|
|
|
|
$('#Form_EditForm_LinkToID_Holder').show();
|
2012-04-11 05:32:41 +02:00
|
|
|
} else {
|
2015-11-17 17:22:49 +01:00
|
|
|
$('#Form_EditForm_ExternalURL_Holder').show();
|
|
|
|
$('#Form_EditForm_LinkToID_Holder').hide();
|
2012-04-11 05:32:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})(jQuery);
|
|
|
|
|