Scott Galloway

Results 1 issues of Scott Galloway

Simple code ``` function getPageContent(localeKey, pageKey, varToPopulate) { var contentRequest = { LocaleKey: localeKey, PageKey: pageKey }; $.getJSON('api/pagecontent', contentRequest, function (data) { varToPopulate.pushAll(data.ContentElements); ``` When I change the locale key...