Skip to content

Commit

Permalink
npm package file
Browse files Browse the repository at this point in the history
  • Loading branch information
cyber-leaf committed Mar 27, 2016
1 parent 2750df0 commit 6bee1a5
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "aatsu",
"version": "1.0.0",
"description": "landing page",
"main": "gulpfile.js",
"dependencies": {
"browser-sync": "^2.11.2",
"gulp": "^3.9.1"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexeyPogorelov/aatsu.git"
},
"author": "Alexey Pogorelov",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlexeyPogorelov/aatsu/issues"
},
"homepage": "http://pogorelov.cc.ua/aatsu/src/index.html"
}
2 changes: 1 addition & 1 deletion src/css/media.css
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
width: 100% !important;
}
section.screen-3 .container .content-holder {
top: 120px;
top: 80px;
bottom: 80px;
}

Expand Down
3 changes: 2 additions & 1 deletion src/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,8 @@ $(document).on('ready', function () {

setTimeout(function () {

$window.trigger('resize');
// TODO test without it
// $window.trigger('resize');

}, 10000);

Expand Down
3 changes: 2 additions & 1 deletion src/js/scrollpage.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@ $(window).resize(function () {

windowWidth = $(window).width();
windowHeight = $(window).height();
scrollPages.resize(pagesState.currentPage, true);
// TODO test without it
// scrollPages.resize(pagesState.currentPage, true);

});

Expand Down

0 comments on commit 6bee1a5

Please sign in to comment.