This file contains hidden or 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
angular.module('mdChipDraggable', []) | |
.directive('mdChipDraggable', function () { | |
return { | |
restrict: 'A', | |
scope: {}, | |
bindToController: true, | |
controllerAs: 'vm', | |
controller: ['$document', '$scope', '$element', '$timeout', | |
function ($document, $scope, $element, $timeout) { | |
var vm = this; |
This file contains hidden or 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
# .htaccess for old domain | |
Options +FollowSymLinks | |
RewriteEngine On | |
RewriteCond %{HTTP:X-FORWARDED-HOST} !(.*)newdomain(.*) [NC] | |
RewriteRule (.*) http://newdomain.com/$1 [R=301,L] | |
# .htaccess for new domain | |
Options +FollowSymLinks | |
RewriteEngine on | |
RewriteRule (.*) http://olddomain.com/$1 [P,L] |
NewerOlder