Beginning on 2017-09-20 the consumer api sent 500 (internal server error) codes to most consumer requests.
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
(ns app.ui.views | |
(:require | |
[crate.core :as crate] | |
[crate.form :as form]) | |
(:use-macros | |
[crate.def-macros :only [defpartial]])) | |
(defpartial share-modal [content] | |
[:form#create-form.modal-body.form-horizontal | |
[:div.control-group |
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
<script type='text/javascript' id='spling-script'> | |
window.SPLING_URL = 'http://spling.com/app/user/DanceMoms/splingboards-widget/dancemoms'; | |
</script> | |
<script type='text/javascript' src='//cdnjs.cloudflare.com/ajax/libs/jquery/1.7/jquery.min.js'></script> | |
<script type="text/javascript" src="http://spling.com/s/g/widget.js"></script> |
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
<script type='text/javascript' id='spling-script'> | |
window.SPLING_URL = 'http://spling.com/app/user/DanceMoms/splingboards-widget/dancemoms'; | |
</script> | |
<script type="text/javascript" src="http://spling.com/s/g/widget.js"></script> |
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 Example.Views.Table extends Backbone.View | |
template: JST['example/table'] | |
initialize: -> | |
@collection.on 'add', @addOne | |
render: -> | |
@$el.html @template() | |
@addAll() | |
@ |
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 Example.Views.Table extends Backbone.View | |
template: JST['example/table'] | |
initialize: -> | |
_.bindAll @, 'addOne', 'addAll' | |
@collection.on 'add', @addOne | |
render: -> | |
@$el.html @template() |
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 Example.Views.Table extends Backbone.View | |
template: JST['example/table'] | |
initialize: -> | |
_.bindAll @, 'addOne', 'addAll' | |
@collection.on 'add', @addOne | |
render: -> | |
@$el.html @template() |