-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #297 Resolve conflicts, updating documentation
- Loading branch information
Showing
148 changed files
with
4,909 additions
and
1,131 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
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,3 @@ | ||
# Place all the behaviors and hooks related to the matching controller here. | ||
# All this logic will automatically be available in application.js. | ||
# You can use CoffeeScript in this file: http://coffeescript.org/ |
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,29 @@ | ||
# [Post to Facebook - Story 5.1] | ||
# Opens popup window for the facebook popup | ||
# Parameters: | ||
# url: url to open in popup window | ||
# popName: name of popup window | ||
# Returns: none | ||
# Author: Amir George | ||
|
||
@openBackWindow = (url, popName) -> | ||
popupWindow = window.open(url, popName, "scrollbars=1,height=1,width=1") | ||
if $.browser.msie | ||
popupWindow.blur() | ||
window.focus() | ||
else | ||
blurPopunder() | ||
return | ||
|
||
# [Post to Facebook - Story 5.1] | ||
# Helper for openBackWindow | ||
# Parameters: none | ||
# Returns: none | ||
# Author: Amir George | ||
|
||
blurPopunder = -> | ||
winBlankPopup = window.open("about:blank") | ||
if winBlankPopup | ||
winBlankPopup.focus() | ||
winBlankPopup.close() | ||
return |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,13 @@ | ||
$(document).ready(function() { | ||
$('.tabs .tab-links a').on('click', function(element) { | ||
var currentAttrValue = $(this).attr('href'); | ||
// Show/Hide Tabs | ||
$('.tabs ' + currentAttrValue).siblings().slideUp(400); | ||
$('.tabs ' + currentAttrValue).delay(400).slideDown(400); | ||
//or use fade | ||
//$('.tabs ' + currentAttrValue).fadeIn(400).siblings().hide(); | ||
// Change/remove current tab to active | ||
$(this).parent('li').addClass('active').siblings().removeClass('active'); | ||
element.preventDefault(); | ||
}); | ||
}); |
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,3 @@ | ||
# Place all the behaviors and hooks related to the matching controller here. | ||
# All this logic will automatically be available in application.js. | ||
# You can use CoffeeScript in this file: http://coffeescript.org/ |
Oops, something went wrong.