瀏覽代碼

#390968: Use Drupal 6's JavaScript API to load the JavaScript for the module, by remi

Roger López 16 年之前
父節點
當前提交
0dbc7d7df4
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      simplemenu.js

+ 2 - 2
simplemenu.js

@@ -1,6 +1,6 @@
 // $Id$
 
-$(document).ready(function() {
+Drupal.behaviors.simplemenuAttach = function(context) {
   // If detect pop-ups setting is enabled and we are in a pop-up window
   if (Drupal.settings.simplemenu.detectPopup && window.opener) {
   	return;
@@ -48,7 +48,7 @@ $(document).ready(function() {
   	  .removeAttr('title');
 
 	 $('#simplemenu').children('li.expanded').addClass('root');
-});
+};
 
 
 /* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)