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
| // code snippet 2 | |
| public any function setSomething($) { | |
| return true; | |
| } |
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
| // here's a comment | |
| public any function doSomething($) { | |
| return true; | |
| } |
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
| <!--- Change "PageDefault" to the {type}{subType} of your class extension ---> | |
| <cffunction name="onPageDefaultBodyRender" access="public" output="true" returntype="any"> | |
| <cfargument name="$" hint="mura scope" /> | |
| <!--- Do Something ---> | |
| </cffunction> |
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
| this.alertSuccessClass = ""; | |
| this.alertInfoClass = "alert alert-info"; | |
| this.alertWarningClass = "alert alert-warning"; | |
| this.alertDangerClass = "alert alert-danger"; | |
| //Display Objects | |
| //Use these variables to pass-in specific classes without having to create custom versions | |
| //calendar/dsp_showMonth.cfm | |
| this.calendarWrapperClass=""; |
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
| <cfscript> | |
| // dsp_login.cfm | |
| this.loginWrapperClass=""; | |
| this.loginWrapperInnerClass="row"; | |
| this.loginFormClass="form-horizontal form-signin"; | |
| this.forgotPasswordFormClass="form-horizontal form-sendlogin"; | |
| this.loginFormGroupWrapperClass=this.formFieldWrapperClass; | |
| this.loginFormFieldLabelClass="control-label col-lg-3"; | |
| this.loginFormFieldWrapperClass="col-lg-9"; | |
| this.loginFormFieldClass=this.formInputClass; |
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
| /{SiteID}/includes/themes/MuraBootstrap/display_objects/custom/extensions/dsp_Page_Bio.cfm |
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
| <cfif $.content('bioDisplayType') eq 'tabs'> | |
| <cfinclude template="../page_bio/tabs.cfm"> | |
| <cfelse> | |
| <cfinclude template="../page_bio/accordion.cfm"> | |
| </cfif> |
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
| <link rel="stylesheet" href="../css/myStyles.css"> |
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
| /{SiteID}/includes/themes/yourThemeName/ |
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
| /css/{your css files would be in here} | |
| /js/{your JavaScript files would be here} | |
| index.html |