Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2019 from juliandescottes/window-rep
Browse files Browse the repository at this point in the history
upgrade to reps 0.1.1 & add Window->Global formatting
  • Loading branch information
wldcordeiro authored Feb 14, 2017
2 parents 149683d + c69165a commit afaef1f
Show file tree
Hide file tree
Showing 3 changed files with 172 additions and 172 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"babylon": "^6.15.0",
"codemirror": "^5.1.0",
"devtools-launchpad": "^0.0.41",
"devtools-reps": "^0.0.8",
"devtools-reps": "^0.1.1",
"documentation": "^4.0.0-beta11",
"eslint": "^3.12.0",
"expect.js": "^0.3.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/SecondaryPanes/Scopes.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function getScopes(pauseInfo, selectedFrame) {
// If this is the global window scope, mark it as such so that it will
// preview Window: Global instead of Window: Window
if (value.class === "Window") {
value = Object.assign({}, scope.object, { isGlobal: true });
value = Object.assign({}, scope.object, { displayClass: "Global" });
}
scopes.push({
name: scope.object.class,
Expand Down
Loading

0 comments on commit afaef1f

Please sign in to comment.