This file contains hidden or 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
Creating new Spots | |
1 - Add new spots | |
2 - Set spots radius | |
3 - Define spot approval methods | |
Posting a new message | |
1 - Post new stories |
This file contains hidden or 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
http://desandro.github.io/3dtransforms/docs/card-flip.html | |
- http://desandro.github.io/3dtransforms/examples/card-01.html | |
http://davidwalsh.name/css-flip | |
http://tympanus.net/Development/ImageTransitions/index6.html | |
This file contains hidden or 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
http://fb45.atrending.net/17-things-you-didnt-know-google-chrome-could-do.html |
This file contains hidden or 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
http://www.w3csolutions.com/website-resources/Horizontal-Menu/CSS-Menu/Horizontal-Sub-Menu/ | |
This file contains hidden or 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
http://www.w3csolutions.com/website-resources/Horizontal-Menu/CSS-Menu/Horizontal-Sub-Menu/ |
This file contains hidden or 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
http://www.w3csolutions.com/website-resources/Horizontal-Menu/CSS-Menu/Horizontal-Sub-Menu/ | |
https://gist.github.com/jgoyon/3993263 | |
http://cssmenumaker.com/css-menus |
This file contains hidden or 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
http://victorsavkin.com/post/59496656297/building-large-backbone-applications | |
http://victorsavkin.com/post/49767352960/supervising-presenters | |
http://martinfowler.com/eaaDev/SupervisingPresenter.html | |
http://orizens.com/wp/topics/backbone-js-for-large-scale-applications-ui-architecture/ | |
http://marionettejs.com/ |
This file contains hidden or 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
//------------------------------------------ | |
//- Model ---------------------------------- | |
// The model is abstract and has no knowledge of the presentation layer. | |
var Product = Backbone.Model.extend({ | |
initialize: function(){ | |
this.set({price : 0, pricePlusTax : 0}); | |
this.on("change:price", function(){ | |
this.set({pricePlusTax: this.get('price') * 1.2}) | |
}) |
This file contains hidden or 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
https://discussions.apple.com/docs/DOC-3083 | |
http://coolestguidesontheplanet.com/get-apache-mysql-php-phpmyadmin-working-osx-10-10-yosemite/ | |
http://coolestguidesontheplanet.com/set-virtual-hosts-apache-mac-osx-10-9-mavericks-osx-10-8-mountain-lion/ | |
http://coolestguidesontheplanet.com/get-apache-mysql-php-phpmyadmin-working-osx-10-9-mavericks/ |
This file contains hidden or 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
%placeholder{ | |
property: value; | |
} | |
@mixin widget(full/content/aside){ | |
} | |
//layout | |
Target all pages elements and apply placeholders and mixins for widgets, boxes and heades. |
OlderNewer