-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5053bf0
commit b3ded08
Showing
60 changed files
with
357 additions
and
982 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
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 @@ | ||
require('./header.directive'); | ||
require('./footer.directive'); | ||
require('./../layout/header.directive.js'); | ||
require('./../layout/footer.directive.js'); | ||
require('./toggle.directive'); | ||
require('./search.directive'); | ||
require('./document.click.directive'); |
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
File renamed without changes.
File renamed without changes.
9 changes: 6 additions & 3 deletions
9
src/directive/header.directive.js → src/layout/header.directive.js
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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,4 +1,4 @@ | ||
var app = require('../app'); | ||
var app = require('../../app'); | ||
|
||
// 调用Api 服务 | ||
app.registerController('ChartCtrl', | ||
|
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
This file was deleted.
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 |
---|---|---|
@@ -1,26 +1,35 @@ | ||
<div class="panel"> | ||
<header class="panel-heading"> | ||
<div class="col-md-24"> | ||
<h1>Layzimg <span class="small">懒加载图片</span></h1> | ||
|
||
|
||
<div class="row"> | ||
<!--图片懒加载 --> | ||
<div class="panel"> | ||
<header class="panel-heading"> | ||
<h3>图片懒加载</h3> | ||
</header> | ||
</header> | ||
|
||
<section class="panel-body"> | ||
<section class="panel-body"> | ||
<div class="form-group row"> | ||
<div class="col-lg-6"> | ||
<select class="form-control" ng-model="searchText"> | ||
<option value="1">filter 1</option> | ||
<option value="2">filter 2</option> | ||
<option value="3">none</option> | ||
</select> | ||
</div> | ||
<div class="col-lg-6"> | ||
<select class="form-control" ng-model="vm.searchText"> | ||
<option value="1">filter 1</option> | ||
<option value="2">filter 2</option> | ||
<option value="3">none</option> | ||
</select> | ||
</div> | ||
|
||
<span class="p-t-sm" ng-bind="filtered.length">0</span> item(s) | ||
<span class="p-t-sm" ng-bind="filtered.length">0</span> item(s) | ||
</div> | ||
|
||
|
||
<ul class="list-unstyled"> | ||
<li class="demo-repeat-list--items" ng-repeat="image in filtered =(collection | filter:{'type': searchText})"> | ||
<span afkl-lazy-image="{{image.srcset}}" class="afkl-lazy-wrapper afkl-img-ratio-3-2"></span> | ||
</li> | ||
<li class="demo-repeat-list--items" | ||
ng-repeat="image in filtered =(vm.collection | filter:{'type': vm.searchText})"> | ||
<span afkl-lazy-image="{{image.srcset}}" class="afkl-lazy-wrapper afkl-img-ratio-3-2"></span> | ||
</li> | ||
</ul> | ||
</section> | ||
</section> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.