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
| .languages { | |
| &.dataviewfields{ | |
| line-height: 30px; | |
| } | |
| .language-row { | |
| display: inline-block; | |
| padding: 4px; | |
| font-size: 15px; |
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
| Ext.define('Workout.view.Main', { | |
| extend : 'Workout.view.NavigationView', | |
| xtype : 'main', | |
| requires : [ | |
| 'Workout.view.MainMenu' | |
| ], | |
| config : { | |
| fullscreen : true, | |
| items : [ | |
| { |
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
| Ext.define('Workout.controller.Main', { | |
| extend : 'Ext.app.Controller', | |
| config : { | |
| models: [ | |
| 'Workout' | |
| ], | |
| stores: [ | |
| 'Workouts' | |
| ], | |
| views: [ |
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
| onModelBound: function(panel, model) { | |
| var tabPanels, topPanel = this.getDetailTabPanel(panel); | |
| if (topPanel) { | |
| tabPanels = topPanel.items; | |
| tabPanels.each(function(tabPanel) { | |
| var countableField = this.getCountableField(tabPanel), | |
| store; |
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
| .section { | |
| .title { | |
| @include overviewSection; | |
| @include text-shadow(0px 1px $baseWhite); | |
| font: { | |
| weight: bold; | |
| size: 13px; | |
| } | |
| } | |
| } |
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
| <div class="notification-popup"> | |
| <span class="close">X</span> | |
| <h3>Here is the title</h3> | |
| <p>Here is the text</p> | |
| <div> |
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
| /** | |
| * @class McAfee.view.main.Viewport | |
| * @extends Ext.container.Container | |
| * @author Crysfel Villa <crysfel@moduscreate.com> | |
| * | |
| * Description | |
| */ | |
| Ext.define('McAfee.view.main.Viewport',{ | |
| extend : 'Ext.container.Container', |
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
| /** | |
| * @class McAfee.view.main.Viewport | |
| * @extends Ext.container.Container | |
| * @author Crysfel Villa <crysfel@moduscreate.com> | |
| * | |
| * Description | |
| */ | |
| Ext.define('McAfee.view.main.Viewport',{ | |
| extend : 'Ext.container.Container', |
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
| $mobilePage = get_page_by_title('Mobile'); | |
| $wp_query = new WP_Query( | |
| array( | |
| 'post_type' => 'page', | |
| 'post_parent' => $mobilePage->ID | |
| ) | |
| ); |
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
| ### Designer Spec Challenge | |
| The idea with this exercise is to show us how you think and execute quickly. We aren’t expecting pixel perfect designs in 2 hours, but what we are expecting is a demonstration of your ability to take a small spec, and create a UI/UX experience for a mobile device. | |
| - Time limit: 2 hours | |
| - Target device: iPhone 4 | |
| - Deliverable: Up to you. You can deliver us a high resolution wireframe, or image you designed in Photoshop or Illustrator. You could also develop the entire thing in HTML/CSS if you’re feeling fancy. Work the way that makes you the most productive. | |
| **Specification** |