// users/edit/index.hbs
{{filter-list
items=model
filterBy="path.value"
labelBy="path.value"
highlight=true
order="ASC"}}
For each call ajax
- ajaxStart
- ajaxSend
- ajaxSuccess/ajaxError
- ajaxComplete
- ajaxStop
http://ricostacruz.com/cheatsheets/semver.html
Given a version number MAJOR.MINOR.PATCH
:
-MAJOR
= incompatible API changes.
-MINOR
= add functionality. (backwards-compatible)
-PATCH
= bug fixes. (backwards-compatible)
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
var gulp = require('gulp'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var source = require('vinyl-source-stream'); | |
var buffer = require('vinyl-buffer'); | |
var browserify = require('browserify'); | |
var watchify = require('watchify'); | |
var babel = require('babelify'); | |
var sass = require('gulp-sass'); | |
function compile(watch) { |
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
/**** Utils ****/ | |
.font(@size) { | |
font-size: @size; | |
line-height: @size; | |
} | |
.size(@width, @height) { | |
width: @width; | |
height: @height; | |
} |
NewerOlder