User:Mono: Difference between revisions

From Wikimedia Foundation Governance Wiki
Content deleted Content added
Mono (talk | contribs)
mNo edit summary
Mono (talk | contribs)
test
Line 1: Line 1:
<html>
<html>
<div id="dialog" title="Choose Your Language">


<div id="dialog" title="Basic dialog">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
</div>
Line 9: Line 7:
mw.loader.using(['jquery.ui.dialog'], function () {
mw.loader.using(['jquery.ui.dialog'], function () {


$( '#dialog' ).dialog();
$( '#dialog' ).dialog({
autoOpen: false,
modal: true,
}
);
});
});

$( "#create-user" )
.button()
.click(function() {
$( "#dialog" ).dialog( "open" );
});
});

</script>
</script>
<button id="create-user">Open The Dialog</button>

</html>
</html>

Revision as of 00:44, 2 October 2012

<html>

This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.

<script> mw.loader.using(['jquery.ui.dialog'], function () {

   $( '#dialog' ).dialog({

autoOpen: false, modal: true, } ); });

$( "#create-user" ) .button() .click(function() { $( "#dialog" ).dialog( "open" ); }); });

</script> <button id="create-user">Open The Dialog</button>

</html>