diff --git a/apps/files_sharing/js/public_note.js b/apps/files_sharing/js/public_note.js
index f8aa4cf5a60ea26af7722764c5a412b4314c6ed2..a303d6c7675e4be197ddaf50e3781e41711b31c9 100644
--- a/apps/files_sharing/js/public_note.js
+++ b/apps/files_sharing/js/public_note.js
@@ -21,8 +21,11 @@
  */
 
  $(document).ready(function() {
-	 var noteHtml = document.getElementById('notemenu').outerHTML
-	 $(noteHtml).insertBefore('#header-primary-action');
-	 $('#notemenu').removeClass('hidden');
-	 OC.registerMenu($('#notemenu .menutoggle'), $('#notemenu .menu'))
+	 var noteElmt = document.getElementById('notemenu')
+	 if	(noteElmt) {
+		var noteHtml = noteElmt.outerHTML
+		$(noteHtml).insertBefore('#header-primary-action');
+		$('#notemenu').removeClass('hidden');
+		OC.registerMenu($('#notemenu .menutoggle'), $('#notemenu .menu'))
+	 }
  })
\ No newline at end of file