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
{ | |
"curriculum": [ | |
{ | |
"id": "351", | |
"usr_created": "curr_bcas", | |
"dttm_created": "2012-09-26 13:05:04", | |
"usr_last_modified": "curr_bcas", | |
"dttm_last_modified": "2012-09-27 13:58:43", | |
"usr_submitted": null, | |
"dttm_submitted": null, |
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
public function get_curriculum_course_other_details($curriculumID) | |
{ | |
return $this->db | |
->select('a.*,c.name as "className",b.name as "title"') | |
->from('curr_courses a') | |
->join('other_courses b', 'a.class = b.id', 'left') | |
->join('other_depts c','b.other_dept_id = c.id', 'left') | |
->where('a.curriculum_id', $curriculumID) | |
->where('a.flag_other', 1) | |
->order_by('a.year asc, a.term asc') |
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
if(searchVal.match(/:/g)){ | |
n = searchVal.replace(':', '\\x3A'); | |
$scope.searchObj['filterText'] = n; | |
} else { | |
$scope.searchObj['filterText'] = searchVal; | |
} |
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
// override jquery validate plugin defaults | |
$.validator.setDefaults({ | |
highlight: function(element) { | |
$(element).closest('.form-group').addClass('has-error'); | |
}, | |
unhighlight: function(element) { | |
$(element).closest('.form-group').removeClass('has-error'); | |
}, | |
errorElement: 'span', | |
errorClass: 'help-block', |
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
#foreach($inode in $carouselCategory) | |
#if($velocityCount == 1) | |
#set($catlist = "categories:$categories.getCategoryByInode($inode).getCategoryVelocityVarName()") | |
#else | |
#set($catlist = "$catlist categories:$categories.getCategoryByInode($inode).getCategoryVelocityVarName()") | |
#end | |
#end |
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
#set($query = "+structureName:homeScroller +(conhost:5ce88b4e-45bc-4870-bd1e-3cb8399a11a1 conhost:SYSTEM_HOST) +homeScroller.active:1") | |
#set($list = $dotcontent.pull($query, '0', 'homeScroller.weightedOrder desc')) | |
<script type="text/javascript"> | |
// execute your scripts when DOM is ready. this is a good habit | |
jQuery(function() { | |
// initialize scrollable | |
jQuery("div.scrollable").scrollable( | |
{ |
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
Date: %FDATE% | |
Author: Brad Rice | |
Email: [email protected] | |
Title: %HERE% | |
Slug: | |
Tags: | |
Category: |
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
ALTER TABLE tablename AUTO_INCREMENT = 1 |
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
<script type="application/ld+json"> | |
{ "@context" : "http://schema.org", | |
"@type" : "Organization", | |
"name" : "The University of Akron", | |
"url" : "http://www.uakron.edu", | |
"sameAs" : [ "https://www.facebook.com/UniversityofAkron", | |
"https://www.linkedin.com/edu/school?id=19136", | |
"https://twitter.com/uakron", | |
"http://instagram.com/uakron", | |
"https://www.youtube.com/uakron"], |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin family($size){ | |
font-size: $size; | |
@if $size <= 16px { | |
font-family: Arial, sans-serif; | |
} @else if $size <= 24px { |