Skip to content

Commit e3af4bc

Browse files
committed
Swapped arguments around
1 parent a4f8920 commit e3af4bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

application/views/rest_server.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
var App = App || {};
123123

124124
// Basic rest module using an IIFE as a way of enclosing private variables
125-
App.rest = (function ($, window) {
125+
App.rest = (function (window, $) {
126126
// Fields
127127

128128
// Cache the jQuery selector
@@ -175,7 +175,7 @@ function cacheDom() {
175175
bind();
176176
}
177177
};
178-
})(jQuery, window);
178+
})(window, jQuery);
179179

180180
// DOM ready event
181181
$(function () {

0 commit comments

Comments
 (0)