Commit 76a90afd authored by TasteBot's avatar TasteBot

update the build files for gh-pages [ci skip]

parent d0f9078b
......@@ -17,7 +17,7 @@ TodoMVC.module('TodoList', function (TodoList, App, Backbone, Marionette) {
//
// Control the workflow and logic that exists at the application
// level, above the implementation detail of views and models
TodoList.Controller = Marionette.Controller.extend({
TodoList.Controller = Marionette.Object.extend({
initialize: function () {
this.todoList = new App.Todos.TodoList();
},
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -127,6 +127,7 @@ header nav a:not(:last-child) {
margin: 0;
padding: 0;
font-size: 17px;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
......@@ -195,7 +196,8 @@ header nav a:not(:last-child) {
.collapsed {
overflow: hidden;
max-height: 0;
transition: max-height 0.7s ease-out;
-webkit-transition: max-height 0.7s ease-out;
transition: max-height 0.7s ease-out;
}
#news-expander {
......@@ -204,7 +206,8 @@ header nav a:not(:last-child) {
#news-expander:checked ~ .collapsed {
max-height: 999px;
transition: max-height 0.7s ease-in;
-webkit-transition: max-height 0.7s ease-in;
transition: max-height 0.7s ease-in;
}
.credit {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment