Created
December 10, 2013 12:15
-
-
Save ddsilva/7889708 to your computer and use it in GitHub Desktop.
SIPLAN - Site index_view
This file contains 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
define [ | |
'core' | |
], () -> | |
# Imports | |
# ============================================================= | |
Core = require 'core' | |
# IndexView class | |
# ============================================================= | |
class IndexView extends Core.View | |
# Override Attributtes | |
# ============================================================= | |
autoRender : true | |
container : '#module-container' | |
initialize: -> | |
super | |
@createLoader() | |
createLoader : -> @$el.append '<p class="loading" spin></p>' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment