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
const prixAbonnements = { | |
// puissance: abonnement TTC | |
6 : 12.85, | |
7 : 14.00, | |
8 : 15.14, | |
9 : 16.55, | |
10: 17.69, | |
11: 18.83, | |
12: 20.36, | |
13: 21.48, |
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
{ | |
"zoom_levels": { | |
"default":3, | |
"list": { | |
"5":{"height":1241,"width":800}, | |
"6":{"height":1397,"width":900}, | |
"1":{"height":310,"width":200}, | |
"7":{"height":1552,"width":1000}, | |
"2":{"height":620,"width":400}, | |
"8":{"height":1707,"width":1100}, |
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
module ActsAsSomething | |
def self.included(base) | |
base.extend ActMethods | |
end | |
module ActMethods | |
def acts_as_something | |
extend ClassMethods |
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
/** | |
* java -jar jsrun.jar app/run.js -p -a -t=templates/outline ../public/javascripts/urlize.js | |
*/ | |
/** | |
* See (http://jquery.com/). | |
* @name jQuery | |
* @class | |
* See the jQuery Library (http://jquery.com/) for full details. | |
*/ |
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
/* | |
* $.namespace | |
* Allow you to store all your javascript in namespaces. | |
* Call the namespaces only when you need them and avoid useless Javascript DOM manipulation. | |
* | |
* 1. Create your namespaces | |
* $.namespace([ | |
* 'views', | |
* 'views.home', | |
* 'session', |