Finished removing some of the last bits of client side config

Этот коммит содержится в:
=Corey Hulen
2015-09-15 19:29:00 -07:00
родитель 5e2f701e6c
Коммит d625e62d96
4 изменённых файлов: 1 добавлений и 41 удалений

Просмотреть файл

@@ -987,17 +987,3 @@ export function updateValetFeature(data, success, error) {
track('api', 'api_teams_update_valet_feature');
}
export function getConfig(success, error) {
$.ajax({
url: '/api/v1/config/get_all',
dataType: 'json',
type: 'GET',
ifModified: true,
success: success,
error: function onError(xhr, status, err) {
var e = handleError('getConfig', xhr, status, err);
error(e);
}
});
}