We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7e74dd commit 08944ffCopy full SHA for 08944ff
src/resource-manager/resource_service.js
@@ -187,7 +187,6 @@ cls.ResourceManagerService = function(view)
187
}
188
189
this._res_service = window.services['resource-manager'];
190
-
191
this._res_service.addListener("urlload", this._on_urlload_bound);
192
this._res_service.addListener("response", this._on_response_bound);
193
this._res_service.addListener("urlredirect", this._on_urlredirect_bound);
@@ -219,8 +218,9 @@ cls.ResourceManagerService = function(view)
219
218
return null;
220
221
var id = this._context.resourcesUrlDict[url];
222
- if (id===undefined){ return null; }
223
+ if (id===undefined)
+ return null;
+
224
return this.get_resource(id);
225
};
226
0 commit comments