{% include "teaser.html" %}
{% load page_teaser_tags keyword_tags mezzanine_tags i18n %}
{% block page_teaser %}
{% page_teaser "about-us" as teased_page %}
// http://n33.co/2013/03/23/browser-on-jquery-19x-for-legacy-ie-detection | |
jQuery.browser={}; | |
(function() { | |
jQuery.browser.msie = false; | |
jQuery.browser.version = 0; | |
if(navigator.userAgent.match(/MSIE ([0-9]+)\./)) { | |
jQuery.browser.msie = true; | |
jQuery.browser.version = RegExp.$1; | |
} | |
})(); |
from __future__ import unicode_literals | |
from future.builtins import int | |
from collections import defaultdict | |
from datetime import datetime, timedelta | |
from optparse import make_option | |
import re | |
from time import mktime, timezone | |
from xml.dom.minidom import parse |
from django.contrib.admin.options import IS_POPUP_VAR | |
from django.template.response import SimpleTemplateResponse | |
from django.utils.html import escape, escapejs | |
from mezzanine.core.admin import TabularDynamicInlineAdmin | |
from mezzanine.pages.admin import PageAdmin | |
from .models import TopLevel, SecondLevel, ThirdLevel | |
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
from django.db import models, migrations | |
import mezzanine.core.fields | |
class AddExtraField(migrations.AddField): | |
def __init__(self, *args, **kwargs): |
Ember is a framework that embraces convention over configuration. Even if you don't agree with every convention they have (I'm sure there are some things I wouldn't agree with) the convention means it will be easy for someone else to come in and understand what was going on.
I've read multiple places that every member of the Ember core team works on at least one production Ember site, keeping them in tune with how Ember is used, what developers need, what the pain points are, etc...
{ | |
"jsc": { | |
"experimental": { | |
"plugins": [ | |
["/path/to/test_plugin/target/wasm32-wasi/debug/test_plugin.wasm", {}] | |
] | |
} | |
} | |
} |