Remove references to goog in web_frontend/
authorRobert Sesek <rsesek@bluestatic.org>
Wed, 28 Dec 2011 19:45:49 +0000 (14:45 -0500)
committerRobert Sesek <rsesek@bluestatic.org>
Wed, 28 Dec 2011 19:45:49 +0000 (14:45 -0500)
web_frontend/actor.js
web_frontend/path_control.js
web_frontend/tv_renamer.js

index c225f61df678f4c71d3d4d00134c87a7e7b4e183..fc9d6793ef77d786f272697abe66378618af7c56 100644 (file)
@@ -13,10 +13,9 @@ $.namespace('armadillo.Actor');
  * The Actor is a popup that displays the various actions that can be performed
  * on a given File.
  * @param  {armadillo.File}  file  The file to act on.
- * @param  {goog.dom.DomHelper}  opt_domHelper
  * @constructor
  */
-armadillo.Actor = function(file, opt_domHelper) {
+armadillo.Actor = function(file) {
   /**
    * The file object on which this acts.
    * @type  {armadillo.File}
@@ -29,15 +28,9 @@ armadillo.Actor = function(file, opt_domHelper) {
    */
   this.element_ = null;
 
-  /**
-   * The UI element used for a specific action.
-   * @type  {goog.Disposable}
-   */
-  this.actionObject_ = null;
-
   /**
    * Controls for the current action.
-   * @type  {goog.ui.Control}
+   * @type  {Element}
    */
   this.controlContainer_ = null;
 }
@@ -98,7 +91,7 @@ armadillo.Actor.prototype.decorateInternal = function(element) {
 /**
  * Creates the DOM Element that is inserted into the popup.
  * @param  {armadillo.Actor.options_}  Key of the option to create
- * @returns  {goog.ui.Control}
+ * @returns  {Element}
  */
 armadillo.Actor.prototype.createTile_ = function(option) {
   var value = armadillo.Actor.options_[option];
index 80348ab0527bcf691f30b764446993a9ed453613..14bf946ead303f96e36a9e496caeb4dbd0f79e9e 100644 (file)
@@ -38,7 +38,7 @@ armadillo.PathControl = function(path, editLastComponent, opt_domHelper) {
 
   /**
    * Control UI for the name component of the path.
-   * @type  {goog.ui.Control}
+   * @type  {Element}
    */
   this.nameControl_ = null;
 };
@@ -62,7 +62,7 @@ armadillo.PathControl.prototype.getPath = function() {
 
 /**
  * Gets the name control.
- * @returns  {goog.ui.Control}
+ * @returns  {Element}
  */
 armadillo.PathControl.prototype.getNameControl = function() {
   return this.nameControl_;
@@ -147,7 +147,7 @@ armadillo.PathControl.prototype.createComponentNode_ = function(path, name) {
  * the given menu.
  * @param  {string}  path  The path to get a list of items in
  * @param  {string}  name  The name to select
- * @param  {goog.ui.Menu}  The menu to attach items to
+ * @param  {Element}  The menu to attach items to
  */
 armadillo.PathControl.prototype.fetchMenuContents_ = function(path, name, menu) {
   var fullPath = this.path_;
index de9caa00cae807daf0790edf62f3b449c03b3474..9a05ed8866580eb3fb4b9ba56d2b890bf8b005ad 100644 (file)
@@ -11,7 +11,6 @@ $.namespace('armadillo.TVRenamer');
 
 /**
  * Creates a helper to rename a file in a pretty format for TV episodes.
- * @extends  {goog.Disposable}
  * @constructor
  */
 armadillo.TVRenamer = function(file) {