mirror of
https://github.com/nextcloud/registration.git
synced 2025-08-15 21:13:25 +00:00
31 lines
649 B
JavaScript
31 lines
649 B
JavaScript
/**
|
|
* ownCloud - registration
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Pellaeon Lin <pellaeon@hs.ntnu.edu.tw>
|
|
* @copyright Pellaeon Lin 2014
|
|
*/
|
|
|
|
(function ($, OC) {
|
|
|
|
$(document).ready(function () {
|
|
$('#hello').click(function () {
|
|
alert('Hello from your script file');
|
|
});
|
|
|
|
$('#echo').click(function () {
|
|
var url = OC.generateUrl('/apps/registration/echo');
|
|
var data = {
|
|
echo: $('#echo-content').val()
|
|
};
|
|
|
|
$.post(url, data).success(function (response) {
|
|
$('#echo-result').text(response.echo);
|
|
});
|
|
|
|
});
|
|
});
|
|
|
|
})(jQuery, OC); |