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
class MapToolbar | |
constructor: (@toggled, @mapToolbar, @toolbarToggle, @mapToolbarIcon, @mapToolbarContent, @searchButton) -> | |
# Variables | |
@mapToolbar = $(".mapToolbar") | |
@toolbarToggle = @mapToolbar.find(".show-toolbar") | |
@mapToolbarIcon = @toolbarToggle.find("i") | |
@mapToolbarContent = @mapToolbar.find(".toolbar-content") | |
@searchButton = @mapToolbar.find(".show-search") | |
search: -> | |
@searchButton.on "click", -> |
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
class Validator | |
constructor: (@$form, @$isTabbed) -> | |
checkStrength: (password) -> | |
characters = 0 | |
capitalletters = 0 | |
loweletters = 0 | |
number = 0 | |
special = 0 | |
total = 0 |
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
<?php | |
/** | |
* @package Mantaray Theme | |
* @author Sean Goresht http://seangoresht.com | |
* @copyright Copyright (2014) Sean Goresht | |
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL | |
*/ | |
// load config | |
require_once(dirname(__FILE__) . "/config.php"); |
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
properties = margin padding | |
proportions = mini small normal medium large | |
directions = top left bottom right | |
$smallmargintop = 1.3em | |
for property in properties | |
for proportion, i in proportions |
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
displays = block inline-block inline table | |
derps = me myMom myDad smurffy | |
generatePlaceholder(display, displays) | |
generatePlaceholder(derp, derps) | |
body | |
@extend $block | |
@extend $smurffy |
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
use("camelize.js") | |
directions = top left bottom right | |
properties = margin padding | |
proportions = mini small normal medium large | |
positions = fixed absolute static relative |
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
`import Ember from "ember"` | |
FormActionsComponent = Ember.Component.extend( | |
save: null | |
classNames: "form-actions", | |
model: null | |
redirectRoute: "admin" | |
icon: "save" | |
iconClassName: (-> | |
"icon-#{@get("icon")}" |
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
`import Ember from "ember"` | |
DashboardRoute = Ember.Route.extend( | |
beforeModel: (transition) -> | |
loginController = @controllerFor("login") | |
unless loginController.get("isLoggedIn") | |
loginController.setProperties({ | |
loginFailed: true | |
attemptedTransition: transition | |
}) |
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
### | |
Failure of mankind | |
girlfriend.coffee | |
@author Sean | |
@note Created on 2014-11-22 by Sean Goresht | |
@note uses Codoc | |
@see https://github.com/coffeedoc/codo |
OlderNewer