Created
January 12, 2014 22:53
-
-
Save kimsk/8391813 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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