1. 27 1月, 2016 1 次提交
  2. 26 1月, 2016 1 次提交
  3. 24 1月, 2016 7 次提交
  4. 23 1月, 2016 2 次提交
  5. 22 1月, 2016 1 次提交
  6. 19 1月, 2016 13 次提交
  7. 16 1月, 2016 3 次提交
  8. 09 1月, 2016 1 次提交
  9. 06 1月, 2016 3 次提交
  10. 01 1月, 2016 1 次提交
  11. 31 12月, 2015 1 次提交
  12. 25 12月, 2015 1 次提交
  13. 22 12月, 2015 1 次提交
  14. 19 12月, 2015 2 次提交
  15. 18 12月, 2015 2 次提交
    • Y
      add line break between method of generated channel js · 4a7bd88e
      yuuji.yaginuma 提交于
      ```
      # before
      App.appearance = App.cable.subscriptions.create "AppearanceChannel",
        connected: ->
          # Called when the subscription is ready for use on the server
      
        disconnected: ->
          # Called when the subscription has been terminated by the server
      
        received: (data) ->
          # Called when there's incoming data on the websocket for this channel
      
        appear: ->
          @perform 'appear'
        away: ->
          @perform 'away'
      ```
      
      ```
      # after
      App.appearance = App.cable.subscriptions.create "AppearanceChannel",
        connected: ->
          # Called when the subscription is ready for use on the server
      
        disconnected: ->
          # Called when the subscription has been terminated by the server
      
        received: (data) ->
          # Called when there's incoming data on the websocket for this channel
      
        appear: ->
          @perform 'appear'
      
        away: ->
          @perform 'away'
      ```
      4a7bd88e
    • A
      [ci skip] Fix grammar · ebad5c72
      Akshay Vishnoi 提交于
      ebad5c72