Start merging current data with distant data
This commit is contained in:
@@ -6,10 +6,10 @@ script(type="text/ng-template",id="folder_template.html")
|
||||
| {{_folder.name}}
|
||||
ul
|
||||
li.folder(ng-repeat="_folder in _folder.folders",ng-include="'folder_template.html'",ng-class="_folder.active ? 'active' : 'inactive'")
|
||||
li.file(ng-repeat="_file in _folder.files",ng-class="_file.active ? 'active' : 'inactive'")
|
||||
li.file(ng-repeat="(_key,_file) in _folder.files",ng-class="_file.active ? 'active' : 'inactive'")
|
||||
span(ng-click="file_click(_file)")
|
||||
i.fa.fa-file-text
|
||||
| {{_file.name}}
|
||||
| {{_key}}
|
||||
|
||||
section.page-project(ng-controller="ProjectController as controller",ng-init="init('" + project_slug + "')")
|
||||
aside.aside
|
||||
|
||||
@@ -6,6 +6,8 @@ html(ng-app="application")
|
||||
var config = {
|
||||
domain : '#{domain}'
|
||||
}
|
||||
script(src="/vendors/underscore/underscore-min.js")
|
||||
script(src="/vendors/underscore/mixins/deep_extend_javascript_objects_underscore_mixin.js")
|
||||
script(src="/vendors/highlight/highlight.pack.js")
|
||||
|
||||
script(src="/socket.io/socket.io.js")
|
||||
|
||||
Reference in New Issue
Block a user