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
// ==UserScript== | |
// @name Jira Column Toggle | |
// @namespace https://gist.github.com/pwilms/816ad0a12abe1349e5b18f0257095205 | |
// @version 0.3 | |
// @description toggle single columns with a click | |
// @author Patric Wilms | |
// @match */secure/RapidBoard.jspa* | |
// @updateURL https://gist.github.com/pwilms/816ad0a12abe1349e5b18f0257095205/raw/571906cdec8218a43737da2fb88f5b92b8f21630/jiraColumnToggle.user.js | |
// @downloadURL https://gist.github.com/pwilms/816ad0a12abe1349e5b18f0257095205/raw/571906cdec8218a43737da2fb88f5b92b8f21630/jiraColumnToggle.user.js | |
// @grant none |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
attributeBindings: ["draggable"], | |
classNames: ["a-handle"], | |
draggable: true, | |
dragStart(e) { | |
this.set("origX", e.originalEvent.clientX); | |
this.set("origWidth", parseInt(this.$().closest("th,td").css("width").replace(/px$/, ""), 10)); |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
attributeBindings: ["draggable"], | |
classNames: ["a-handle"], | |
draggable: true, | |
dragStart(e) { | |
this.set("origX", e.originalEvent.clientX); | |
this.set("origWidth", parseInt(this.$().closest("th,td").css("width").replace(/px$/, ""), 10)); |
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
#!/bin/sh | |
# Copyright (C) Pierre d'Herbemont, 2010 | |
# Copyright (C) Felix Paul Kühne, 2012-2015 | |
set -e | |
BUILD_DEVICE=yes | |
BUILD_SIMULATOR=yes | |
BUILD_STATIC_FRAMEWORK=no | |
SDK=`xcrun --sdk iphoneos --show-sdk-version` |