diff options
| author | Yuval Adam <yuval@y3xz.com> | 2015-07-15 13:16:08 +0300 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2015-07-15 13:16:08 +0300 |
| commit | aed682429bd8b2a0b5edbb6aa06954c25f9df143 (patch) | |
| tree | 769a8d65ec42d617aec6933de4e7704f66375a3a | |
| parent | a891005fba979c91dd178a1887c1c393c15744b6 (diff) | |
Remove share buttons
| -rw-r--r-- | client/button.js | 6 | ||||
| -rw-r--r-- | client/colors.less | 2 | ||||
| -rw-r--r-- | client/templates/photos.html | 2 |
3 files changed, 2 insertions, 8 deletions
diff --git a/client/button.js b/client/button.js index 542db24..84c7208 100644 --- a/client/button.js +++ b/client/button.js @@ -296,12 +296,6 @@ Template.photos.events({ animate2(); return false; }, - 'click button.share-instagram': function (event) { - return false; - }, - 'click button.share-facebook': function (event) { - return false; - }, 'click button.share-print': function (event) { var date = Session.get('date'); var printStr = date.month < 10 ? '0' + date.month : date.month; diff --git a/client/colors.less b/client/colors.less index 3e4e458..2c70c28 100644 --- a/client/colors.less +++ b/client/colors.less @@ -311,6 +311,8 @@ body { width: 260px; button { display: block; + position: absolute; + bottom: 170px; font-size: 2.8em; font-weight: bold; line-height: 1.3em; diff --git a/client/templates/photos.html b/client/templates/photos.html index 2e176e4..1031464 100644 --- a/client/templates/photos.html +++ b/client/templates/photos.html @@ -52,8 +52,6 @@ </ol> </div> <div class="share" style="display: none;"> - <button class="share-instagram">Instagram</button> - <button class="share-facebook">Facebook</button> <button class="share-print">Print</button> </div> </div> |
