Created
January 23, 2012 18:16
-
-
Save stevenpsmith/1664625 to your computer and use it in GitHub Desktop.
This file contains 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
$('#activity-details').live('pagebeforeshow', function(){ | |
var activitiesDetailsContainer = $('#activity-details').find(":jqmData(role='content')"), | |
activityDetailsView, | |
activityId = $('#activity-details').jqmData('activityId'), | |
activityModel = exercise.activities.get(activityId); | |
activityDetailsView = new exercise.ActivityDetailsView({model: activityModel, viewContainer: activitiesDetailsContainer}); | |
activityDetailsView.render(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment