Skip to content

Instantly share code, notes, and snippets.

@a5mith
Created November 18, 2014 21:46
Show Gist options
  • Save a5mith/ee885733cd6a59ccd230 to your computer and use it in GitHub Desktop.
Save a5mith/ee885733cd6a59ccd230 to your computer and use it in GitHub Desktop.
var getCategories = function() {
var categoryContainer = $('.nav-sidebar .categories'),
titleEl = $('.nav-sidebar h2');
titleEl.text('Categories');
$.get(RELATIVE_PATH + '/api/').success(function(returnData) {
templates.parse('partials/menu', returnData, function(html) {
categoryContainer.append(html);
});
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment