Skip to content

Instantly share code, notes, and snippets.

View trevorparscal's full-sized avatar

Trevor Parscal trevorparscal

View GitHub Profile
/**
* @inheritdoc
*/
ve.ui.LinkInspector.prototype.setup = function ( data ) {
var focusedNode = this.surface.getView().getFocusedNode();
if (
focusedNode &&
ve.isInstanceOfAny( focusedNode.getModel(), this.constructor.static.modelClasses )
@trevorparscal
trevorparscal / gist:5631224
Created May 22, 2013 21:49
oojs module template
/* Local Symbols */
( function ( oo, $ ) {
/* Your code here */
/* Global Symbols */
}( ObjectOrientedJavaScript, jQuery ) );
Trevor-Parscals-MacBook-Air:wikidom tparscal$ svn commit -m "Added auto-scrolling when the cursor is moved and fixed some syntax issues that jshint caught"
Sending lib/synth/views/es.SurfaceView.js
Transmitting file data .svn: Commit failed (details follow):
svn: Commit blocked by pre-commit hook (exit code 255) with no output.
@trevorparscal
trevorparscal / TransplantStyles.js
Last active August 29, 2015 14:14
Transplant the CSS styles from as parent document to a frame's document
/**
* Transplant the CSS styles from as parent document to a frame's document.
*
* This loops over the style sheets in the parent document, and copies their nodes to the
* frame's document. It then polls the document to see when all styles have loaded, and once they
* have, resolves the promise.
*
* If the styles still haven't loaded after a long time (5 seconds by default), we give up waiting
* and resolve the promise anyway. This protects against cases like a display: none; iframe in
* Firefox, where the styles won't load until the iframe becomes visible.
@trevorparscal
trevorparscal / example.js
Last active August 29, 2015 14:10
Promisification utilities for OOjs UI
// Sycnhronous before
MyClass.prototype.doSomething = function () {
// do something synchronously after parent method that may or may not return a promise
this.test = 1;
return OO.ui.promisify( MyClass.super.prototype.doSomething ).call( this );
};
// Sycnhronous after
MyClass.prototype.doSomething = function () {
return OO.ui.promisify( MyClass.super.prototype.doSomething ).call( this ).then( function () {
<?php array(
'help' => 'help.svg',
'next' => array(
'image' => array(
'ltr' => 'next.svg',
'rtl' => 'prev.svg'
),
),
'list' => array(
'image' => array(
# Execute this in the root of the mmv repo
# Find and replace script symbols
find resources/mmv -name \*.js -exec sed -i '' \
-e 's/TextInputMenuWidget/TextInputMenuSelectWidget/g' \
-e 's/MenuWidget/MenuSelectWidget/g' \
-e 's/MenuItemWidget/MenuOptionWidget/g' \
-e 's/MenuSectionItemWidget/MenuSectionOptionWidget/g' \
-e 's/OutlineWidget/OutlineSelectWidget/g' \
-e 's/OutlineItemWidget/OutlineOptionWidget/g' \
# Execute this in the root of the ve mw repo
# Find and replace script symbols
find modules -name \*.js -exec sed -i '' \
-e 's/MWInternalLinkMenuItemWidget/MWInternalLinkMenuOptionWidget/g' \
-e 's/MWLinkMenuItemWidget/MWLinkMenuOptionWidget/g' \
-e 's/ContextMenuWidget/ContextSelectWidget/g' \
-e 's/ContextItemWidget/ContextOptionWidget/g' \
-e 's/TextInputMenuWidget/TextInputMenuSelectWidget/g' \
-e 's/MenuWidget/MenuSelectWidget/g' \
# Execute this in the root of the ve repo
# Find and replace script symbols
find . -name \*.js -exec sed -i '' \
-e 's/ContextMenuWidget/ContextSelectWidget/g' \
-e 's/ContextItemWidget/ContextOptionWidget/g' \
-e 's/TextInputMenuWidget/TextInputMenuSelectWidget/g' \
-e 's/MenuWidget/MenuSelectWidget/g' \
-e 's/MenuItemWidget/MenuOptionWidget/g' \
-e 's/MenuSectionItemWidget/MenuSectionOptionWidget/g' \
# Execute this in the root of the oojs-ui repo
# Find and replace script symbols
find . -name \*.js -exec sed -i '' \
-e 's/TextInputMenuWidget/TextInputMenuSelectWidget/g' \
-e 's/MenuWidget/MenuSelectWidget/g' \
-e 's/MenuItemWidget/MenuOptionWidget/g' \
-e 's/MenuSectionItemWidget/MenuSectionOptionWidget/g' \
-e 's/OutlineWidget/OutlineSelectWidget/g' \
-e 's/OutlineItemWidget/OutlineOptionWidget/g' \