-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
a85d01d
commit 3b639f9
Showing
11 changed files
with
207 additions
and
95 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[data-module=parallax_scroll]{background-attachment:fixed} | ||
[data-module=parallax_scroll]{background-position:center 0;background-attachment:fixed} |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Content Tabs | ||
|
||
(function() { | ||
define(['jquery'], function($) { | ||
var exports, makeItHappen, moduleName; | ||
exports = {}; | ||
moduleName = "accordion_content"; | ||
|
||
makeItHappen = function($this) { | ||
console.log($this.html()); | ||
}; | ||
exports.init = function($this) { | ||
var element; | ||
if ($this !== void 0) { | ||
return makeItHappen($this); | ||
} | ||
else { | ||
element = $('[data-module="' + moduleName + '"]'); | ||
return element.each(function() { | ||
return makeItHappen($(this)); | ||
}); | ||
} | ||
}; | ||
return exports; | ||
}); | ||
}).call(this); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Content Tabs | ||
|
||
(function() { | ||
define(['jquery'], function($) { | ||
var exports, makeItHappen, moduleName; | ||
exports = {}; | ||
moduleName = "content_tabs"; | ||
|
||
makeItHappen = function($this) { | ||
console.log($this.html()); | ||
}; | ||
exports.init = function($this) { | ||
var element; | ||
if ($this !== void 0) { | ||
return makeItHappen($this); | ||
} | ||
else { | ||
element = $('[data-module="' + moduleName + '"]'); | ||
return element.each(function() { | ||
return makeItHappen($(this)); | ||
}); | ||
} | ||
}; | ||
return exports; | ||
}); | ||
}).call(this); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Drop Down Menu | ||
|
||
(function() { | ||
define(['jquery'], function($) { | ||
var exports, makeItHappen, moduleName; | ||
exports = {}; | ||
moduleName = "dropdown_menu"; | ||
|
||
makeItHappen = function($this) { | ||
console.log($this.html()); | ||
}; | ||
exports.init = function($this) { | ||
var element; | ||
if ($this !== void 0) { | ||
return makeItHappen($this); | ||
} | ||
else { | ||
element = $('[data-module="' + moduleName + '"]'); | ||
return element.each(function() { | ||
return makeItHappen($(this)); | ||
}); | ||
} | ||
}; | ||
return exports; | ||
}); | ||
}).call(this); |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Content Tabs | ||
|
||
(function() { | ||
define(['jquery'], function($) { | ||
var exports, makeItHappen, moduleName; | ||
exports = {}; | ||
moduleName = "popover"; | ||
|
||
makeItHappen = function($this) { | ||
console.log($this.html()); | ||
}; | ||
exports.init = function($this) { | ||
var element; | ||
if ($this !== void 0) { | ||
return makeItHappen($this); | ||
} | ||
else { | ||
element = $('[data-module="' + moduleName + '"]'); | ||
return element.each(function() { | ||
return makeItHappen($(this)); | ||
}); | ||
} | ||
}; | ||
return exports; | ||
}); | ||
}).call(this); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// Parallax Scroll | ||
[data-module="parallax_scroll"] { | ||
background-position: center 0; | ||
background-attachment: fixed; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "parallax_scroll"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// Parallax Scroll | ||
[data-module="parallax_scroll"] { | ||
background-attachment: fixed; | ||
} |