Sha256: 294d884af808198117d1541effab7c758d7fa97fbcc5a5025c02f5aba4841e1d

Contents?: true

Size: 1.98 KB

Versions: 5

Compression:

Stored size: 1.98 KB

Contents

$ ->
  
  # For Web-app mode, uncomment this (and the CSS in style.scss) to make the cols fill the browser
  # $('.col1, .col2, .col3').css('height',$(window).height() - $('.main_nav').outerHeight() - $('.branding').outerHeight() - 60 + 'px')
  # $(window).resize ->
  #   $('.col1, .col2, .col3').css('height',$(window).height() - $('.main_nav').outerHeight() - $('.branding').outerHeight() - 60 + 'px')
  
  
  $('.popup').livequery ->
    $(this).fancybox
      overlayColor: "#fff"
      transitionIn:"none"
      transitionOut:"none"
      titlePosition:"outside"
      showCloseButton:false
      titleFormat: (title, currentArray, currentIndex, currentOpts) ->
        return if title == ''
        return '<h3 class="popup-title">' + title + '</h3>'
  
  $('#fancybox-content .close').live 'click', (e) -> #close_lightbox_from_link(e)
    e.preventDefault()
    $.fancybox.close()
  
  $('input[type="date"]').livequery ->
    $(this).datepicker
      numberOfMonths:  2
      dateFormat:      'yy-mm-dd'
      showOn:          'focus'
  
  $('textarea.autoGrow').livequery ->
    $(this).autogrow()
  
  $("select:not(.chzn), input:checkbox, input:radio, input:file").livequery ->
    $(this).uniform()
  
  $('select.chzn').livequery ->
    $(this).chosen()
  
  $('input.autoSuggest').livequery ->  
    # $(this).autoSuggest "/path/to/script", 
      # minChars: 2
    autoSuggestData = [{value: "21", name: "Mick Jagger"},{value: "43", name: "Johnny Storm"},{value: "46", name: "Richard Hatch"}]
    $(this).autoSuggest autoSuggestData,
      startText: "AutoSuggesting"
      selectedItemProp: "name"
      searchObjProps: "name"
  
  $('input, textarea').livequery ->
    $(this).placeholder()
  
  
  $('.dataTable').livequery ->
    $(this).dataTable
      "bPaginate": false # Don't paginate
      "aaSorting": [] # No initial sorting
    # "bJQueryUI": true # Use jQueryUI styling
    # "aoColumnDefs": [ # Use this to make the final column un-sortable
    #   { "bSortable": false, "aTargets": [ -1 ] } 
    # ]

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
speedo-0.0.5 app/assets/javascripts/swim.js.coffee
speedo-0.0.4 app/assets/javascripts/swim.js.coffee
speedo-0.0.3 app/assets/javascripts/swim.js.coffee
speedo-0.0.2 app/assets/javascripts/home.coffee
speedo-0.0.1 app/assets/javascripts/home.coffee