Skip to content

Instantly share code, notes, and snippets.

@kimsk
Created January 12, 2014 22:53
Show Gist options
  • Save kimsk/8391813 to your computer and use it in GitHub Desktop.
Save kimsk/8391813 to your computer and use it in GitHub Desktop.
define(['durandal/app'], function (app) {
return {
viewName: 'Thanks for visiting Durandal & Nancy Web App!',
description: 'Durandal is a SPA framework done right and Nancy provides a super-duper-happy-path to all interactions, so we have a super-duper-happy SPA web app done right!',
activate: function () {
$.getJSON("/api/list", function (data) {
app.showMessage(data.Message, data.Title, ['Agree']);
});
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment