Skip to content

Add project about in js files #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 20, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion assets/css/main.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Javascript Filemanager developed with AngularJS and Bootstrap
*
* @author Jonas Sciangula Street <[email protected]>
* @version v0.8
*/

textarea.code {
font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
min-height:200px;
Expand Down Expand Up @@ -140,7 +147,7 @@ body {
padding-left:12px;
}
.file-tree ul.nav.nav-sidebar > li {
border-left: 1px solid #428BCA;
border-left: 1px solid #ddd;
padding-left:4px
}
.file-tree ul.nav.nav-sidebar > li > a {
Expand Down
7 changes: 7 additions & 0 deletions assets/js/app.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Javascript Filemanager developed with AngularJS and Bootstrap
*
* @author Jonas Sciangula Street <[email protected]>
* @version v0.8
*/

var FileManagerApp = angular.module('FileManagerApp', ['pascalprecht.translate', 'ngCookies']);

FileManagerApp.directive('ngFile', function($parse) {
Expand Down
7 changes: 7 additions & 0 deletions assets/js/chmod.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Javascript Filemanager developed with AngularJS and Bootstrap
*
* @author Jonas Sciangula Street <[email protected]>
* @version v0.8
*/

FileManagerApp.service('chmod', function () {

var Chmod = function() {
Expand Down
7 changes: 7 additions & 0 deletions assets/js/config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Javascript Filemanager developed with AngularJS and Bootstrap
*
* @author Jonas Sciangula Street <[email protected]>
* @version v0.8
*/

FileManagerApp.constant("$config", {
appName: "Angular FileManager",
listUrl: "/hosting/filemanager/listdirectory",
Expand Down
7 changes: 7 additions & 0 deletions assets/js/controller.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Javascript Filemanager developed with AngularJS and Bootstrap
*
* @author Jonas Sciangula Street <[email protected]>
* @version v0.8
*/

FileManagerApp.controller('FileManagerCtrl', [
'$scope', '$translate', '$cookies', '$config', 'item', 'fileNavigator', 'fileUploader',
function($scope, $translate, $cookies, $config, Item, FileNavigator, FileUploader) {
Expand Down
7 changes: 7 additions & 0 deletions assets/js/filenavigator.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Javascript Filemanager developed with AngularJS and Bootstrap
*
* @author Jonas Sciangula Street <[email protected]>
* @version v0.8
*/

FileManagerApp.service('fileNavigator', ['$http', '$config', 'item', function ($http, $config, Item) {

var FileNavigator = function() {
Expand Down
7 changes: 7 additions & 0 deletions assets/js/fileuploader.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Javascript Filemanager developed with AngularJS and Bootstrap
*
* @author Jonas Sciangula Street <[email protected]>
* @version v0.8
*/

FileManagerApp.service('fileUploader', ['$http', '$config', function ($http, $config) {
var self = this;

Expand Down
7 changes: 7 additions & 0 deletions assets/js/item.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Javascript Filemanager developed with AngularJS and Bootstrap
*
* @author Jonas Sciangula Street <[email protected]>
* @version v0.8
*/

FileManagerApp.factory('item', ['$http', '$config', 'chmod', function($http, $config, Chmod) {

var Item = function(model, path) {
Expand Down
7 changes: 7 additions & 0 deletions assets/js/selector-controller.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Javascript Filemanager developed with AngularJS and Bootstrap
*
* @author Jonas Sciangula Street <[email protected]>
* @version v0.8
*/

FileManagerApp.controller('ModalFileManagerCtrl', [
'$scope', '$rootScope', '$config', 'item', 'fileNavigator',
function($scope, $rootScope, $config, Item, FileNavigator) {
Expand Down
7 changes: 7 additions & 0 deletions assets/js/translations.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Javascript Filemanager developed with AngularJS and Bootstrap
*
* @author Jonas Sciangula Street <[email protected]>
* @version v0.8
*/

FileManagerApp.config(function($translateProvider) {
$translateProvider.translations('en', {
language: "Language",
Expand Down
2 changes: 1 addition & 1 deletion assets/templates/item-toolbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
</button>
</div>
<div data-ng-show="item.inprocess">
<span class="label label-warning">{{"wait" | translate}} ...</span>
<button class="btn btn-sm" style="visibility: hidden">&nbsp;</button><span class="label label-warning">{{"wait" | translate}} ...</span>
</div>
Loading