diff --git a/module/VuFind/src/VuFind/Theme/jQueryMobile/Helper/MobileMenu.php b/module/VuFind/src/VuFind/Theme/jQueryMobile/Helper/MobileMenu.php
index 20db406753bb87402fe40944ce730d494a253f5b..dd886883e90e5200225f45c0a0a7fbeac2823360 100644
--- a/module/VuFind/src/VuFind/Theme/jQueryMobile/Helper/MobileMenu.php
+++ b/module/VuFind/src/VuFind/Theme/jQueryMobile/Helper/MobileMenu.php
@@ -49,9 +49,6 @@ class MobileMenu extends AbstractHelper
      */
     public function header($extras = array())
     {
-        // TODO: this assumes that the view has controller and action variables set;
-        // we either need to figure out how to set them here or else set them up
-        // globally as part of the bootstrap process.
         $context = $this->getView()->plugin('context');
         return $context($this->getView())->renderInContext('header.phtml', $extras);
     }
@@ -66,7 +63,6 @@ class MobileMenu extends AbstractHelper
      */
     public function footer($extras = array())
     {
-        // TODO: same as header()
         $context = $this->getView()->plugin('context');
         return $context($this->getView())->renderInContext('footer.phtml', $extras);
     }