From 0e595c4e11ce9b44eff157de8616ed15fcd5d6fc Mon Sep 17 00:00:00 2001 From: Ananya Sen Date: Thu, 2 Feb 2012 12:37:29 -0800 Subject: refactoring some file names and locations, change made to maintain only one codemirror div. Signed-off-by: Ananya Sen --- .../new-file-location.reel/new-file-location.js | 56 ---------------------- 1 file changed, 56 deletions(-) delete mode 100755 js/io/workflow/newFileDialog/new-file-location.reel/new-file-location.js (limited to 'js/io/workflow/newFileDialog/new-file-location.reel/new-file-location.js') diff --git a/js/io/workflow/newFileDialog/new-file-location.reel/new-file-location.js b/js/io/workflow/newFileDialog/new-file-location.reel/new-file-location.js deleted file mode 100755 index 805b44a4..00000000 --- a/js/io/workflow/newFileDialog/new-file-location.reel/new-file-location.js +++ /dev/null @@ -1,56 +0,0 @@ -/* -This file contains proprietary software owned by Motorola Mobility, Inc.
-No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.
-(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. -
*/ - -var Montage = require("montage/core/core").Montage; -var Component = require("montage/ui/component").Component; -var newFileWorkflowControllerModule = require("js/io/workflow/newFileDialog/new-file-workflow-controller"); - -var NewFileLocation = exports.NewFileLocation = Montage.create(Component, { - - templateHeight:{ - enumerable: true, - value:"25 px" - }, - - templateWidth:{ - enumerable: true, - value:"25 px" - }, - - willDraw: { - enumerable: false, - value: function() {} - }, - - draw: { - enumerable: false, - value: function() {} - }, - - didDraw: { - enumerable: false, - value: function() { - var that=this; - - this.fileInputField.selectDirectory = true; - - this.newFileName.addEventListener("blur", function(evt){that.handleNewFileNameOnblur(evt);}, false); - } - - }, - - handleNewFileNameOnblur:{ - value:function(evt){ - if(this.newFileName.value !== ""){ - var newFileNameSetEvent = document.createEvent("Events"); - newFileNameSetEvent.initEvent("newFileNameSet", false, false); - newFileNameSetEvent.newFileName = this.newFileName.value; - this.eventManager.dispatchEvent(newFileNameSetEvent); - } - } - } - -}); \ No newline at end of file -- cgit v1.2.3