From a7b85fa61c11ee676c1cade7aa4ddd3e1a559389 Mon Sep 17 00:00:00 2001 From: Jonathan Petitcolas Date: Thu, 10 Sep 2015 17:58:58 +0200 Subject: [PATCH] Retrigger Travis --- examples/blog/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/blog/config.js b/examples/blog/config.js index bbde5db6..2836ce22 100644 --- a/examples/blog/config.js +++ b/examples/blog/config.js @@ -17,7 +17,7 @@ // use the custom query parameters function to format the API request correctly RestangularProvider.addFullRequestInterceptor(function(element, operation, what, url, headers, params) { - if (operation == "getList") { + if (operation === 'getList') { // custom pagination params if (params._page) { params._start = (params._page - 1) * params._perPage;