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
angular.module('dvb.services').service('statics', function($http) { | |
var statics = null; | |
var service = { | |
/* | |
Load static data async during Angular run phase and cache it, since we're dealing with static data. | |
*/ | |
load: function(){ | |
var promise = $http.get('/dvb-service/_statics', {cache: true}); |
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
--- | |
:update_sources: true | |
:verbose: true | |
:bulk_threshold: 1000 | |
:backtrace: false | |
:benchmark: false | |
gem: --no-ri --no-rdoc |
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
<div id="wrapper"> | |
<div id="scroller"> | |
<div id="content"> | |
foo<br>bar<br>baz<br>foo<br>bar<br>baz<br>foo<br>bar<br>baz<br> | |
foo<br>bar<br>baz<br>foo<br>bar<br>baz<br>foo<br>bar<br>baz<br> | |
foo<br>bar<br>baz<br>foo<br>bar<br>baz<br>foo<br>bar<br>baz<br> | |
</div> | |
</div> | |
</div> |
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
/* | |
* <html> | |
* <head> | |
* </head> | |
* <body> | |
* <canvas id="demo" height="400" width="400" style="background:#000;"></div> | |
* </body> | |
* </html> | |
* | |
*/ |