-
Notifications
You must be signed in to change notification settings - Fork 577
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
material spinner, unify angular directives
- Loading branch information
Showing
19 changed files
with
264 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "angular-filemanager", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"homepage": "https://github.com/joni2back/angular-filemanager", | ||
"authors": [ | ||
"Jonas Sciangula Street <[email protected]>" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<html lang="en" data-ng-app="FileManagerApp"> | ||
<head> | ||
<!-- | ||
* Angular FileManager v1.3.0 (https://github.com/joni2back/angular-filemanager) | ||
* Angular FileManager v1.3.1 (https://github.com/joni2back/angular-filemanager) | ||
* Jonas Sciangula Street <[email protected]> | ||
* Licensed under MIT (https://github.com/joni2back/angular-filemanager/blob/master/LICENSE) | ||
--> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*! | ||
* Angular FileManager v1.3.0 (https://github.com/joni2back/angular-filemanager) | ||
* Angular FileManager v1.3.1 (https://github.com/joni2back/angular-filemanager) | ||
* Jonas Sciangula Street <[email protected]> | ||
* Licensed under MIT (https://github.com/joni2back/angular-filemanager/blob/master/LICENSE) | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<ol class="breadcrumb mb0"> | ||
<li> | ||
<a href="" data-ng-click="fileNavigator.goTo(-1)"> | ||
<a href="" ng-click="fileNavigator.goTo(-1)"> | ||
<i class="glyphicon glyphicon-folder-open mr2"></i> | ||
</a> | ||
</li> | ||
<li data-ng-repeat="(key, dir) in fileNavigator.currentPath track by key" data-ng-class="{'active':$last}" class="animated fast fadeIn"> | ||
<a href="" data-ng-show="!$last" data-ng-click="fileNavigator.goTo(key)"> | ||
<li ng-repeat="(key, dir) in fileNavigator.currentPath track by key" ng-class="{'active':$last}" class="animated fast fadeIn"> | ||
<a href="" ng-show="!$last" ng-click="fileNavigator.goTo(key)"> | ||
<i class="glyphicon glyphicon-folder-open mr2"></i> {{dir}} | ||
</a> | ||
<span data-ng-show="$last"><i class="glyphicon glyphicon-folder-open mr2"></i> {{dir}}</span> | ||
<span ng-show="$last"><i class="glyphicon glyphicon-folder-open mr2"></i> {{dir}}</span> | ||
</li> | ||
<li><button class="btn btn-primary btn-xs" data-ng-click="fileNavigator.upDir()">↵</button></li> | ||
<li><button class="btn btn-primary btn-xs" ng-click="fileNavigator.upDir()">↵</button></li> | ||
</ol> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.