One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| $('.modal.draggable>.modal-dialog').draggable({ | |
| cursor: 'move', | |
| handle: '.modal-header' | |
| }); | |
| $('.modal.draggable>.modal-dialog>.modal-content>.modal-header').css('cursor', 'move'); |
| import fs from 'fs'; | |
| import path from 'path'; | |
| const convert = (imgPath) => { | |
| // read image file | |
| fs.readFile(imgPath, (err, data)=>{ | |
| // error handle | |
| if(err) { | |
| throw err; | |
| } |
| (function () { | |
| 'use strict'; | |
| angular.module('myApp') | |
| .controller('SomeCtrl', SomeCtrl); | |
| SomeCtrl.$inject = ['$scope', '$http', ' alertService']; | |
| function SomeCtrl($scope, $http, alertService) { | |
| $http.put('http://some.url/user/44', { |
| // Weights | |
| $hairline-weight: 100; | |
| $thin-weight: 200; | |
| $light-weight: 300; | |
| $normal-weight: 400; | |
| $medium-weight: 500; | |
| $semibold-weight: 600; | |
| $bold-weight: 700; | |
| $xbold-weight: 800; | |
| $black-weight: 900; |
| 'use strict'; | |
| // Generated on 2014-04-14 using generator-leaflet 0.0.14 | |
| var gulp = require('gulp'); | |
| var open = require('open'); | |
| var wiredep = require('wiredep').stream; | |
| // Load plugins | |
| var $ = require('gulp-load-plugins')(); |
| @import "modular-scale"; | |
| @import "functions"; | |
| $base-font-size: 16px; | |
| $base-line-height: 24px; | |
| $rhythm-unit: "rem"; | |
| // Setup vertical rhythm | |
| @include establish-baseline; |