Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

ludo

« Newer Snippets
Older Snippets »
Showing 11-20 of 38 total

jMaki Menu component for Phobos

jMaki Menu component for Phobos

   1  
   2  <% library.jmaki.insert(
   3      {
   4      component : "jmaki.menu" ,
   5      value : { 
   6          columns: [
   7          {label : 'Images',
   8              menuItems : [
   9                  {label :'Birds', url : '/jsonibrowse.js'},
  10                  {label :'Cat', url : '/ibrowse.js'}
  11                  ]},
  12          {label : 'Bookmarks',
  13              menuItems : [
  14                  {label :'Digg', url : '/digg/show'},
  15                  {label :'Delicious', url : '/delicious/show'}
  16                  ]}
  17          ]  
  18   
  19          } 
  20      }
  21      ); %> 

jMaki digg component for Phobos

jMaki digg component for Phobos

   1  
   2  <% library.jmaki.insert(
   3      {
   4      component : "jmaki.digg" ,
   5      args : {
   6              diggTopic : 'programming', 
   7              itemCount : 5
   8              } 
   9      }
  10      ); %> 

jMaki Dynamic Container for Phobos

jMaki Dynamic Container for Phobos

   1  
   2  <% library.jmaki.insert({
   3      component : "jmaki.dcontainer" }); %> 

Scriptaculous Inplace Editor jMaki widget for Phobos

Scriptaculous Inplace Editor jMaki widget for Phobos

   1  
   2  <% library.jmaki.insert(
   3      {
   4          component : "scriptaculous.inplace",
   5          service : "/inplaceService.js" ,
   6          value : "click me to replace"
   7      }
   8      ); %> 
   9  

jMaki Image Browser for Phobos

jMaki Image Browser for Phobos

   1  
   2  <% library.jmaki.insert(
   3      {
   4         component : "jmaki.ibrowser" ,
   5         args : {
   6                  sourceType : 'flickr', 
   7                  tag : 'thekt'
   8                }
   9          }
  10      ); %> 
  11  

Google Map Popup jMaki widget for Phobos

Google Map Popup jMaki widget for Phobos

   1  
   2  <% library.jmaki.insert(
   3      {
   4          component : "google.mappopup",
   5          value : "San Francisco, CA" ,
   6          args : {
   7                  width : 175, 
   8                  height : 175, 
   9                  zoom : 10  
  10                  } , 
  11          service : "xhp"
  12        }
  13      ); %> 
  14  

Google Map jMaki widget for Phobos

Google Map jMaki widget for Phobos

   1  
   2  <% library.jmaki.insert(
   3      {
   4          component : "google.map",
   5          args : {
   6              centerLat : 37.39316, 
   7              centerLon : -121.947333700, 
   8              height : 300
   9              }
  10      }
  11      ); %> 

Flickr Word jMaki widget for Phobos

Flickr Word jMaki widget for Phobos

   1  
   2  <% library.jmaki.insert(
   3      {
   4      component : "flickr.word",  
   5      args : {
   6              word:'jmaki', 
   7              size: 50
   8              } 
   9      }
  10      ); %> 
  11  

Flickr Search jMaki widget for Phobos

Flickr Search jMaki widget for Phobos

   1  
   2  <% library.jmaki.insert(
   3      {
   4          component : "flickr.search"  ,
   5          type : "jmaki" ,
   6          args : {
   7                  topic : 'flickrSearch', 
   8                  columns : 3, 
   9                  count : 9
  10                 } , 
  11          service : "xhp"
  12      }
  13      ); %> 

Fickr Captcha jMaki widget for Phobos

Fickr Captcha jMaki widget for Phobos

   1  
   2  <% library.jmaki.insert(
   3      {
   4          component : "flickr.captcha",  
   5          args : {
   6                  length : 4, 
   7                  random : 'true'
   8                 } 
   9      }
  10      ); %> 
« Newer Snippets
Older Snippets »
Showing 11-20 of 38 total