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
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
zh-TW: | |
errors: | |
messages: | |
expired: "已經過期,請重新申請一個" | |
not_found: "找不到" | |
already_confirmed: "已經驗證,請直接登入" | |
not_locked: "被鎖定了" | |
not_saved: |
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
# app/policies/active_admin/ | |
module ActiveAdmin | |
class CommentPolicy < ApplicationPolicy | |
class Scope < Struct.new(:user, :scope) | |
def resolve | |
scope | |
end | |
end | |
end | |
end |
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
# http://csswizardry.com/2013/01/mindbemding-getting-your-head-round-bem-syntax/ | |
# | |
# .site-search {} /* Block */ | |
# .site-search__field {} /* Element */ | |
# .site-search--full {} /* Modifier */ | |
# | |
# | |
angular.module 'ng-bem' [] | |
.directive 'bem-block' -> | |
BemBlockCtrl.$inject = [ |
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
function mixinChanged (changes) { | |
changes.forEach(function (change) { | |
switch (change.type) { | |
case "add": | |
case "update": | |
this[change.name] = change.object[change.name]; | |
break; | |
case "delete": | |
delete this[name]; | |
break; |
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
language: node_js | |
node_js: | |
- '0.10' | |
install: npm run dev_install | |
env: | |
global: | |
secure: CODECLIMATE_TOKEN |
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
/* | |
* This is a synchronized vesion. Please rewrite in async version using Promise. | |
* Note: You may directly use https://github.com/normalize/mz | |
* | |
*/ | |
var walkSync = function(dir, filelist) { | |
var fs = fs || require('fs'), | |
files = fs.readdirSync(dir); | |
filelist = filelist || []; | |
files.forEach(function(file) { |
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 strict'; | |
var AppDispatcher = require('../dispatcher/AppDispatcher'); | |
var Constants = require('../constants/AppConstants'); | |
exports.addToCart = function (product) { | |
AppDispatcher.handleViewAction({ | |
type: Constants.ActionTypes.ADD_TO_CART, // it's just "ADD_TO_CART" | |
product: product | |
}); |
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 strict'; | |
module.exports = function (context, payload, done) { | |
context.dispatch('ADD_TO_CART', {product: payload.product}); | |
done(); | |
}; |
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 strict'; | |
var Reflux = require('reflux'); | |
var ActionCreators = Reflux.createActions([ | |
'receiveProducts', | |
'addToCart', | |
'cartCheckout', | |
'finishCheckout' | |
]); |
OlderNewer