60 |
Awesome. I have it.
61 |
Your couch. I it's mine.
62 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ultrices aliquet placerat. Duis pulvinar orci et nisi euismod vitae tempus lorem consectetur. Duis at magna quis turpis mattis venenatis eget id diam.
63 |
×
64 |
65 |
66 | */
67 |
--------------------------------------------------------------------------------
/src/main/resources/images/blank.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rsgoncalves/ecco/3a50dba8eb6680f5d30c83f0032627465e822f97/src/main/resources/images/blank.png
--------------------------------------------------------------------------------
/src/main/resources/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rsgoncalves/ecco/3a50dba8eb6680f5d30c83f0032627465e822f97/src/main/resources/images/favicon.png
--------------------------------------------------------------------------------
/src/main/resources/images/info_bubble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rsgoncalves/ecco/3a50dba8eb6680f5d30c83f0032627465e822f97/src/main/resources/images/info_bubble.png
--------------------------------------------------------------------------------
/src/main/resources/images/logomanchester.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rsgoncalves/ecco/3a50dba8eb6680f5d30c83f0032627465e822f97/src/main/resources/images/logomanchester.png
--------------------------------------------------------------------------------
/src/main/resources/images/minus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rsgoncalves/ecco/3a50dba8eb6680f5d30c83f0032627465e822f97/src/main/resources/images/minus.png
--------------------------------------------------------------------------------
/src/main/resources/images/modal-gloss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rsgoncalves/ecco/3a50dba8eb6680f5d30c83f0032627465e822f97/src/main/resources/images/modal-gloss.png
--------------------------------------------------------------------------------
/src/main/resources/images/plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rsgoncalves/ecco/3a50dba8eb6680f5d30c83f0032627465e822f97/src/main/resources/images/plus.png
--------------------------------------------------------------------------------
/src/main/resources/images/tt_bottom.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rsgoncalves/ecco/3a50dba8eb6680f5d30c83f0032627465e822f97/src/main/resources/images/tt_bottom.gif
--------------------------------------------------------------------------------
/src/main/resources/images/tt_left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rsgoncalves/ecco/3a50dba8eb6680f5d30c83f0032627465e822f97/src/main/resources/images/tt_left.gif
--------------------------------------------------------------------------------
/src/main/resources/images/tt_top.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rsgoncalves/ecco/3a50dba8eb6680f5d30c83f0032627465e822f97/src/main/resources/images/tt_top.gif
--------------------------------------------------------------------------------
/src/main/resources/images/x_icon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rsgoncalves/ecco/3a50dba8eb6680f5d30c83f0032627465e822f97/src/main/resources/images/x_icon.gif
--------------------------------------------------------------------------------
/src/main/resources/js/jquery.reveal.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery Reveal Plugin 1.0
3 | * www.ZURB.com
4 | * Copyright 2010, ZURB
5 | * Free to use under the MIT license.
6 | * http://www.opensource.org/licenses/mit-license.php
7 | */
8 |
9 |
10 | (function($) {
11 |
12 | /*---------------------------
13 | Defaults for Reveal
14 | ----------------------------*/
15 |
16 | /*---------------------------
17 | Listener for data-reveal-id attributes
18 | ----------------------------*/
19 |
20 | $('a[data-reveal-id]').live('click', function(e) {
21 | e.preventDefault();
22 | var modalLocation = $(this).attr('data-reveal-id');
23 | $('#'+modalLocation).reveal($(this).data());
24 | });
25 |
26 | /*---------------------------
27 | Extend and Execute
28 | ----------------------------*/
29 |
30 | $.fn.reveal = function(options) {
31 |
32 |
33 | var defaults = {
34 | animation: 'fadeAndPop', //fade, fadeAndPop, none
35 | animationspeed: 300, //how fast animtions are
36 | closeonbackgroundclick: true, //if you click background will modal close?
37 | dismissmodalclass: 'close-reveal-modal' //the class of a button or element that will close an open modal
38 | };
39 |
40 | //Extend dem' options
41 | var options = $.extend({}, defaults, options);
42 |
43 | return this.each(function() {
44 |
45 | /*---------------------------
46 | Global Variables
47 | ----------------------------*/
48 | var modal = $(this),
49 | topMeasure = parseInt(modal.css('top')),
50 | topOffset = modal.height() + topMeasure,
51 | locked = false,
52 | modalBG = $('.reveal-modal-bg');
53 |
54 | /*---------------------------
55 | Create Modal BG
56 | ----------------------------*/
57 | if(modalBG.length == 0) {
58 | modalBG = $('