-
Notifications
You must be signed in to change notification settings - Fork 7
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
Tomasz Rondio
committed
Mar 5, 2014
1 parent
e1ca5a3
commit e23badc
Showing
8 changed files
with
175 additions
and
285 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 |
---|---|---|
|
@@ -353,7 +353,9 @@ margin-right: 0px; | |
|
||
|
||
|
||
|
||
#load_more{ | ||
display:none; | ||
} | ||
|
||
|
||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
|
||
$(function() { | ||
|
||
|
||
|
||
|
||
|
||
window.lapp = { | ||
|
||
|
||
|
||
|
||
|
||
|
||
init : function(){ | ||
|
||
|
||
|
||
this.view = new window.listView(); | ||
|
||
}, | ||
|
||
showMoreButton : function (){ | ||
$("#load_more").css("display","block"); | ||
}, | ||
|
||
hideMoreButton : function (){ | ||
$("#load_more").css("display","none"); | ||
} | ||
|
||
}; | ||
|
||
lapp.init(); | ||
|
||
}); |
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.