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

Commit

Permalink
Nit: change case in function name.
Browse files Browse the repository at this point in the history
  • Loading branch information
busykai committed Sep 12, 2014
1 parent b526784 commit 147d69a
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 147d69a

Please sign in to comment.