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
$.fn.plugin = function () { | |
var dom = { | |
element = this.children(".class"); | |
}; | |
return dom; | |
} | |
function private() { | |
// do stuff to dom.element |
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
.up .notification-loading { | |
padding: 40px; | |
margin: 40px 0; | |
background: url("../images/loading.gif") no-repeat 50% 50%; | |
} | |
.up .notification-portlet-wrapper { | |
overflow: auto; | |
} | |
.up .notification-portlet-wrapper .notification-options { | |
overflow: auto; |
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
// inside | |
return { | |
init: myInitializeFunction | |
} |
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
Aug 10, 2011 10:17:47 AM org.apache.catalina.core.AprLifecycleListener init | |
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: .:/Users/Jacob/Library/Java/Extensions:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java | |
Aug 10, 2011 10:17:47 AM org.apache.coyote.http11.Http11Protocol init | |
INFO: Initializing Coyote HTTP/1.1 on http-8080 | |
Aug 10, 2011 10:17:47 AM org.apache.catalina.startup.Catalina load | |
INFO: Initialization processed in 404 ms | |
Aug 10, 2011 10:17:47 AM org.apache.catalina.core.StandardService start | |
INFO: Starting service Catalina | |
Aug 10, 2011 10:17:47 AM org.apache.catalina.core.StandardEngine start | |
INFO: Starting Servlet Engine: Apache Tomcat/6.0.29 |
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
INFO [main] Aug/10 09:43:28,446 context.ContextLoader.[] - Root WebApplicationContext: initialization started | |
INFO [main] Aug/10 09:43:28,484 support.XmlWebApplicationContext.[] - Refreshing Root WebApplicationContext: startup date [Wed Aug 10 09:43:28 MST 2011]; root of context hierarchy | |
INFO [main] Aug/10 09:43:28,554 xml.XmlBeanDefinitionReader.[] - Loading XML bean definitions from file [/Users/Jacob/Code/up4/apache-tomcat-6.0.29/webapps/uPortal/WEB-INF/classes/properties/contexts/applicationContext.xml] | |
INFO [main] Aug/10 09:43:29,658 xml.XmlBeanDefinitionReader.[] - Loading XML bean definitions from file [/Users/Jacob/Code/up4/apache-tomcat-6.0.29/webapps/uPortal/WEB-INF/classes/properties/contexts/cacheContext.xml] | |
INFO [main] Aug/10 09:43:29,675 xml.XmlBeanDefinitionReader.[] - Loading XML bean definitions from file [/Users/Jacob/Code/up4/apache-tomcat-6.0.29/webapps/uPortal/WEB-INF/classes/properties/contexts/channelContainerContext.xml] | |
INFO [main] Aug/10 09:43:29,687 xml.XmlBeanDefinitionRead |
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
.foo { | |
color: green; /* IE8 and older */ | |
*color: blue; /* IE7 and older */ | |
_color: red; /* IE6 and older */ | |
} |
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
var up = up || {}; | |
(function($, fluid){ | |
var initialHide = function (that) { | |
$(that.locate("stacktracediv")).hide(); | |
}; | |
var addToggle = function (that) { | |
var toggleHandle = $(that.locate("stacktracetoggle")); |
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
var up = up || {}; | |
(function($, fluid){ | |
up.myFunction = function () { | |
return fluid.initView("myFunction"); | |
// do stuff here | |
} |
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
var up = up || {}; | |
(function($, fluid){ | |
var someFunction = function () { | |
// do stuff | |
} | |
up.myFunction = function (container, options) { | |
var that = fluid.initView("up.myFunction", container, options); |
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
@each $style in 'dark', 'light', 'login', 'utility', 'search', 'websearch', 'default' { | |
@if $type == $style { | |
@include button-style( | |
$#{$style}ButtonBorder, | |
$#{$style}ButtonBackground, | |
$#{$style}ButtonText, | |
$#{$style}ButtonTextShadow, | |
$#{$style}ButtonGradient1, | |
$#{$style}ButtonGradient2 | |
); |