Skip to content

Commit

Permalink
Retrigger Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetitcolas committed Sep 10, 2015
1 parent cb67db5 commit a7b85fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/blog/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a7b85fa

Please sign in to comment.