cbb726a0 by Gary Katsevman

Options object may not contain a url.

1 parent c0d2ed06
......@@ -333,7 +333,7 @@ var
// use the URL specified in options if one was provided
if (typeof options === 'string') {
return options;
} else if (options) {
} else if (options.url) {
return options.url;
}
......