Sha256: a31646c9317fc4932fd9358b67b1dc93a6c017f573f67f45ee74c4f975bbdccd
Contents?: true
Size: 869 Bytes
Versions: 30
Compression:
Stored size: 869 Bytes
Contents
# dashing.js is located in the dashing framework # It includes jquery & batman for you. #= require dashing.js #= require_directory . #= require_tree ../../widgets console.log("Yeah! The dashboard has started!") Dashing.on 'ready', -> Dashing.widget_margins ||= [5, 5] Dashing.widget_base_dimensions ||= [300, 360] Dashing.numColumns ||= 4 contentWidth = (Dashing.widget_base_dimensions[0] + Dashing.widget_margins[0] * 2) * Dashing.numColumns Batman.setImmediate -> $('.gridster').width(contentWidth) $('.gridster ul:first').gridster widget_margins: Dashing.widget_margins widget_base_dimensions: Dashing.widget_base_dimensions avoid_overlapped_widgets: !Dashing.customGridsterLayout draggable: stop: Dashing.showGridsterInstructions start: -> Dashing.currentWidgetPositions = Dashing.getWidgetPositions()
Version data entries
30 entries across 30 versions & 5 rubygems