Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var App = function () {
- this.init();
- };
- App.prototype.init = function () {
- var self = this;
- $.post(
- '/api/task/createNew',
- { taskName: "smth new", taskType: 0 }
- );
- $.get(
- '/api/task/fetchAll',
- function ( sender ) {
- console.log(sender);
- }
- );
- };
- window.onload = function () {
- var app = new App();
- };
Advertisement
Add Comment
Please, Sign In to add comment