You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by hs...@apache.org on 2012/04/04 21:34:07 UTC

svn commit: r1309563 - /shindig/trunk/features/src/main/javascript/features/actions/actions_container.js

Author: hsaputra
Date: Wed Apr  4 19:34:06 2012
New Revision: 1309563

URL: http://svn.apache.org/viewvc?rev=1309563&view=rev
Log:
Simple cleanup removing extra semicolons in classic function definitions in actions_container.js

Modified:
    shindig/trunk/features/src/main/javascript/features/actions/actions_container.js

Modified: shindig/trunk/features/src/main/javascript/features/actions/actions_container.js
URL: http://svn.apache.org/viewvc/shindig/trunk/features/src/main/javascript/features/actions/actions_container.js?rev=1309563&r1=1309562&r2=1309563&view=diff
==============================================================================
--- shindig/trunk/features/src/main/javascript/features/actions/actions_container.js (original)
+++ shindig/trunk/features/src/main/javascript/features/actions/actions_container.js Wed Apr  4 19:34:06 2012
@@ -353,7 +353,7 @@
       }
     }
     return response;
-  };
+  }
 
   /**
    * Container handling of an action that has been programmatically added via
@@ -377,7 +377,7 @@
         delete pendingActions[actionId];
       }
     }
-  };
+  }
 
   /**
    * Adds the action to the action registry, and renders the action in the
@@ -411,7 +411,7 @@
         }
       }
     }
-  };
+  }
 
   /**
    * Removes the action from the action registry, and removes the action from
@@ -441,7 +441,7 @@
         }
       }
     }
-  };
+  }
 
   /**
    * A map of all listeners.
@@ -497,7 +497,7 @@
         }
       }
     }
-  };
+  }
 
   /**
    * Fix list of actions from actions contributions to check if it has been wrapped with <actions>
@@ -522,7 +522,7 @@
      actions = "<actions>" + actions + "</actions>";
     }
     return actions;
-  };
+  }
 
   /**
    * Callback for loading actions after gadget has been preloaded.