mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
7d2a18d883
Summary: Provide a dirt-simple working example of client-side templating and reactive programming. Test Plan: Load the examples Reviewers: epriestley, mroch, tomo Reviewed By: epriestley CC: ide, schrockn, aran, rzadorozny, epriestley Differential Revision: 908
26 lines
635 B
JavaScript
26 lines
635 B
JavaScript
/**
|
|
* @provides phabricator-uiexample-reactor-radio
|
|
* @requires javelin-install
|
|
* javelin-view
|
|
* javelin-util
|
|
* javelin-dom
|
|
* javelin-reactor-dom
|
|
*/
|
|
|
|
JX.install('ReactorRadioExample', {
|
|
extend: 'View',
|
|
members: {
|
|
render: function(rendered_children) {
|
|
var radio_one = JX.$N('input', {type: 'radio', name: 'n', value: 'one'});
|
|
var radio_two = JX.$N('input', {type: 'radio', name: 'n', value: 'two'});
|
|
|
|
radio_one.checked = true;
|
|
|
|
return [
|
|
radio_one,
|
|
radio_two,
|
|
JX.RDOM.$DT(JX.RDOM.radio([radio_one, radio_two]))
|
|
];
|
|
}
|
|
}
|
|
});
|