| Index: Source/devtools/front_end/SASSSourceMapping.js
|
| diff --git a/Source/devtools/front_end/SASSSourceMapping.js b/Source/devtools/front_end/SASSSourceMapping.js
|
| index d7daec28149aa59c99b3cd9f32bec1d5151755ee..9c376529d7b72c6fe2796ccd758cd1b0464f6c3e 100644
|
| --- a/Source/devtools/front_end/SASSSourceMapping.js
|
| +++ b/Source/devtools/front_end/SASSSourceMapping.js
|
| @@ -76,14 +76,10 @@ WebInspector.SASSSourceMapping.prototype = {
|
|
|
| if (isAddingRevision)
|
| return;
|
| - this._cssModel.resourceBinding().requestResourceURLForStyleSheetId(event.data.styleSheetId, callback.bind(this));
|
| -
|
| - function callback(url)
|
| - {
|
| - if (!url)
|
| - return;
|
| - this._cssModel.setSourceMapping(url, null);
|
| - }
|
| + var url = this._cssModel.resourceBinding().resourceURLForStyleSheetId(event.data.styleSheetId);
|
| + if (!url)
|
| + return;
|
| + this._cssModel.setSourceMapping(url, null);
|
| },
|
|
|
| /**
|
|
|