Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/zurb/foundation-apps
Browse files Browse the repository at this point in the history
  • Loading branch information
gakimball committed Dec 4, 2014
2 parents 2210a77 + 9e2bf0b commit b6427d8
Show file tree
Hide file tree
Showing 18 changed files with 497 additions and 949 deletions.
Binary file added Docs/assets/img/matterhorn-small.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/assets/img/matterhorn.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
289 changes: 193 additions & 96 deletions Docs/templates/iconic.html

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions docs/assets/js/angular.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@ var app = angular.module('application', [

$rootScope.$state = $state;
$rootScope.$stateParams = $stateParams;
}]);
}])
.run(['$rootScope','$window', '$location', function($rootScope, $window, $location) {
var track = function() {
$window.ga('send', 'pageview', { page: $location.path() });
};
$rootScope.$on('$locationChangeSuccess', track);
}]);

angular.module('application')
.controller('MotionUIController', ['$scope', '$state', 'FoundationApi', '$animate', '$window', function($scope, $state, FoundationApi, $animate, $window) {
Expand Down Expand Up @@ -173,4 +179,4 @@ angular.module('application')
}
};
}
]);
]);
12 changes: 12 additions & 0 deletions docs/assets/scss/docs/_docs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -761,3 +761,15 @@ hr {
justify-content: center;
}
}

.inline-list {
display: inline-block;
}

.icon-label {
margin-left: 1rem;
}

.icon li {
margin-bottom: 1rem;
}
11 changes: 10 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,18 @@
<script src="assets/js/app.js"></script>
<script src="assets/js/routes.js"></script>
<script src="assets/js/angular-app.js"></script>
<!-- TEST COMMENT -->
</head>
<body>

<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-2195009-60', 'auto');

</script>

<!-- Right Off Canvas -->
<zf-offcanvas id="example-canvas-top" position="top">
Expand Down
345 changes: 69 additions & 276 deletions docs/templates/angular.html

Large diffs are not rendered by default.

55 changes: 55 additions & 0 deletions docs/templates/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,61 @@ <h4>Known Issues</h4>

<hr>

<h3>Version 1.0.0 — Matterhorn</h3>

<p>Welcome to Foundation for Apps 1.0.0! Thanks for swinging by to try it out.</p>

<p>Our initial release of the framework includes:</p>

<p><strong>An awesome, responsive flexbox-based grid</strong> for creating robust, responsive app layouts.</p>

<p><strong>The Motion UI library</strong> for easily animating pages and components. You can also use our mixins to write custom animations.</p>

<p><strong>Our Gulp-powered Angular helpers</strong> which allow you to harness the power of the Angular UI Router library without writing any JavaScript.</p>

<p>The framework also includes these sweet components:</p>
<ul>
<li>Block list</li>
<li>Button</li>
<li>Button group</li>
<li>Card</li>
<li>Forms</li>
<li>Label and badge</li>
<li>Menu bar</li>
<li>Switch</li>
<li>Title bar</li>
<li>Typography</li>
<li>Visibility and utility classes</li>
</ul>

<p>These components are also available as Angular directives:</p>
<ul>
<li>Accordion</li>
<li>Action sheet</li>
<li>Modal</li>
<li>Notification</li>
<li>Off-canvas</li>
<li>Panel</li>
<li>Popup</li>
<li>Tabs</li>
</ul>

<h4>How to Contribute</h4>

<p>We love feedback! Help us find bugs and suggest improvements or new features. Follow us on Twitter at [@ZURBFoundation](https://twitter.com/zurbfoundation) to keep up-to-date with what's new, or to just shoot the breeze.</p>

<p>If you find a problem or have an idea, open a [new issue](https://github.com/zurb/foundation-apps/issues) on GitHub. When filing a bug report, make sure you specify the browser and operating system you're on, and toss us a screenshot or show us how we can recreate the issue.</p>

<h4>Known Issues</h4>

<ul>
<li>Some issues with the flexbox grid in IE10</li>
<li>Mobile Safari doesn't place fixed-position elements (modals, notifications) at the </li>right z-index — #190
<li>Range sliders aren't properly styled in IE10+ — #191</li>
</ul>

<hr>

<h3>Version 1.0.0 RC1 — Mont Blanc</h3>

<p>It's our 1.0 release candidate! Thanks for stopping by to take a look.</p>
Expand Down
Loading

0 comments on commit b6427d8

Please sign in to comment.