[Windowing] Tabbing Rename

Renamed all instances of NewWindow to be
NewTab instead. WTD-16.
This commit is contained in:
Shivam Dave
2015-06-22 15:35:08 -07:00
parent dc4436e890
commit c7154447e2
4 changed files with 8 additions and 8 deletions

View File

@ -36,7 +36,7 @@ define(
* the user interface.)
* @constructor
*/
function NewWindowAction($window) {
function NewTabAction($window) {
return {
/**
* Open the object in a new window
@ -49,6 +49,6 @@ define(
};
}
return NewWindowAction;
return NewTabAction;
}
);