Collapse file diffs for files with a certain exentions. The list of extensions is on the end of gist.
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
.bubble.thread { | |
opacity: 0.65; | |
} | |
.bubble.green { | |
border-color: #9554D2 !important; | |
color: #9554D2 !important; | |
fill: #9554D2 !important; | |
} |
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('$q-spread', []) | |
.config(function ($provide) { | |
$provide.decorator('$q', function ($delegate) { | |
var originalAll = $delegate.all; | |
$delegate.all = function (promises) { | |
var promise = originalAll(promises); |
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
var toString = Object.prototype.toString, | |
regex = /\[object (.*?)\]/, | |
type = function (o) { | |
var match, typeMatch; | |
// Special case for DOM elements | |
if (o && o.nodeType === 1) { | |
return 'element'; | |
} |
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
<script type="url/text" url> | |
acme_assets_get_all = {{ url('acme_assets_get_all', { type: ':type' }) }}; | |
acme_assets_get_from_to = {{ url('acme_assets_get_from_to', { type: ':type', from: ':from', to: ':to' }) }}; | |
</script> |
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
/** | |
* Inject urls into the url service | |
*/ | |
Module.directive('url', ['$url', function injectUrlData($url) { | |
return { | |
restrict : 'A', | |
compile: function() { | |
return { | |
pre: function(scope, element, attrs) { |
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
// some exampe controller | |
Module.controller('Example', ['$scope', '$http', '$url', function ($scope, $http, $url) { | |
// fetch assets from php controller | |
$scope.fetchFromTo(from, to) { | |
var url = $url.get('acme_get_assets_from_to', { type: 'documents', from: from, to: to }); | |
$http.get(url) | |
.success(function () { | |
// do something with the result |
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
/** | |
* URL service, holding urls for JS | |
*/ | |
Module.factory('$url', function Url() { | |
var $url = { | |
_urls: {}, | |
/** |
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
<?php | |
class AssetController { | |
/** | |
* Get assets via some params | |
* @param string $type | |
* @param integer $from | |
* @param integer $to | |
* @return array |
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
<ul> | |
<li> | |
<a href="{{ url('acme_assets_get_all', { type: 'documents' }) }}"> | |
{% trans %}All Documents{% endtrans %} | |
</a> | |
</li> | |
<li> | |
<a href="{{ url('acme_assets_get_from_to', { type: 'documents', from: 10, to: 15 }) }}"> | |
{% trans %}Just a page{% endtrans %} |
NewerOlder