Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
el-ckeditor / lib / el-ckeditor / templates / browser / tree-leaf.slim
Size: Mime:
- if File.directory?(path)
  ul
    - Pathname.new(path).children.select {|e| e.directory?}.each do |e|
      - qsp = params.merge(path: e.sub(@root_regexp, '').to_s)
      - url = route(:browser__files, qsp)
      - onclick = "$.get('%s', function(r){ $('#files').html(r) });" % url
      - dom_id  = 'branch-%s' % e.__id__
      li.active
        input  id=dom_id type="checkbox" checked=true
        label for=dom_id
          a href="#" onclick=onclick
            = File.basename(e)
            small.muted = ' [%s]' % managed_files(e).size
            
        == browser__tree e