Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #9081 from busykai/kai/nit-function-name
Browse files Browse the repository at this point in the history
Nit: change case in function name.
  • Loading branch information
redmunds committed Sep 12, 2014
2 parents b526784 + 147d69a commit 53f1cb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/editor/EditorManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ define(function (require, exports, module) {
* @param {!jQuery.Event} e - event
* @param {?File} file - current file (can be null)
*/
function _handlecurrentFileChange(e, file) {
function _handleCurrentFileChange(e, file) {
var doc = file && DocumentManager.getOpenDocumentForPath(file.fullPath);
_notifyActiveEditorChanged(doc && doc._masterEditor);
}
Expand Down Expand Up @@ -784,7 +784,7 @@ define(function (require, exports, module) {
// Create PerfUtils measurement
PerfUtils.createPerfMeasurement("JUMP_TO_DEFINITION", "Jump-To-Definiiton");

$(MainViewManager).on("currentFileChange", _handlecurrentFileChange);
$(MainViewManager).on("currentFileChange", _handleCurrentFileChange);
$(MainViewManager).on("workingSetRemove workingSetRemoveList", _handleRemoveFromPaneView);


Expand Down

0 comments on commit 53f1cb4

Please sign in to comment.