A Pen by Christopher McCulloh on CodePen.
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
| <div class="form-group repeat-interval"> | |
| <div data-resize="auto" class="btn-group selectlist pull-left repeat-options"> | |
| <button data-toggle="dropdown" class="btn btn-default dropdown-toggle" type="button"> | |
| <span class="selected-label">none</span> | |
| <span class="caret"></span> | |
| </button> | |
| <ul class="dropdown-menu" role="menu"> | |
| <li data-value="none"><a href="#">none</a></li> | |
| <li data-value="minutely" data-text="minute(s)"><a href="#">minute(s)</a></li> | |
| <li data-value="hourly" data-text="hour(s)"><a href="#">hours(s)</a></li> |
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
| // ==UserScript== | |
| // @name Headphones | |
| // @namespace http://chomperstomp.com | |
| // @version 0.1.3 | |
| // @description Cut out the useless Chatter | |
| // @author Christopher McCulloh | |
| // @match https://org62.my.salesforce.com/* | |
| // @updateURL https://gist.github.com/cormacmccarthy/70f21760e43f45e7e2b9/raw/ae645135d637cf0fc8ca9076a8d69762476261d0/headphones.user.js | |
| // @grant none | |
| // @require http://code.jquery.com/jquery-latest.js |
RIGHT NOW:
Create a symlinked folder of your local version of fuelux inside of another project (eg: mctheme):
- In fuelux project where you are making fuelux changes:
*
bower link* This creates a symlink target. - In target project you want to test with fuelux changes:
*
bower link fuelux fuelux-local* This creates a symlink. You now have local fuelux changes in your other project.
- changes will apear in:
bower_components/fuelux-local
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
| <!DOCTYPE html> | |
| <html class="fuelux"> | |
| <head lang="en"> | |
| <!-- styles --> | |
| <link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"/> | |
| <link href="http://www.fuelcdn.com/fuelux/3.3.0/css/fuelux.min.css" rel="stylesheet"/> | |
| <link href="http://www.fuelcdn.com/fuelux-mctheme/1.1.0/css/fuelux-mctheme.min.css" rel="stylesheet"/> | |
| <!-- scripts --> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> |
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
| $(function() { | |
| // define the columns in your datasource | |
| var columns = [ | |
| { | |
| label: 'Name & Description', | |
| property: 'name', | |
| sortable: true | |
| }, | |
| { | |
| label: 'Key', |
NewerOlder