Author: rhari
Date: Mon May 14 10:16:07 2007
New Revision: 429

URL: http://svn.gna.org/viewcvs/phplinker?rev=429&view=rev
Log:
#206
Bug fix

Modified:
    trunk/www/js/context-menu-tag.js
    trunk/www/js/context-menu.js

Modified: trunk/www/js/context-menu-tag.js
URL: 
http://svn.gna.org/viewcvs/phplinker/trunk/www/js/context-menu-tag.js?rev=429&r1=428&r2=429&view=diff
==============================================================================
--- trunk/www/js/context-menu-tag.js (original)
+++ trunk/www/js/context-menu-tag.js Mon May 14 10:16:07 2007
@@ -355,6 +355,9 @@
                window.refToContextMenu = this; // Reference to menu strip 
object
                this.menuUls = new Array();
                for(var no in this.menuItems2){ // Looping through menu items
+                   if (no == 'containsValue'){
+                       continue;
+                   }
                        if(!this.menuUls[0]){   // Create main ul element
                                this.menuUls[0] = document.createElement('UL');
                                this.menuObject.appendChild(this.menuUls[0]);

Modified: trunk/www/js/context-menu.js
URL: 
http://svn.gna.org/viewcvs/phplinker/trunk/www/js/context-menu.js?rev=429&r1=428&r2=429&view=diff
==============================================================================
--- trunk/www/js/context-menu.js (original)
+++ trunk/www/js/context-menu.js Mon May 14 10:16:07 2007
@@ -366,6 +366,9 @@
                window.refToContextMenu = this; // Reference to menu strip 
object
                this.menuUls = new Array();
                for(var no in this.menuItems){  // Looping through menu items
+                   if (no == 'containsValue'){
+                       continue;
+                   }
                        if(!this.menuUls[0]){   // Create main ul element
                                this.menuUls[0] = document.createElement('UL');
                                this.menuObject.appendChild(this.menuUls[0]);


_______________________________________________
PHPLinker-commits mailing list
[email protected]
https://mail.gna.org/listinfo/phplinker-commits

Reply via email to