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
| javascript:(function () { | |
| var href = $('a[href$="Confirm+Email"]').first().parent().siblings().find('a').filter(function(index) { return $(this).text() === "Delete"; }).attr('href'); | |
| if (href) { | |
| window.location = href; | |
| } | |
| href = $('a').filter(function(index) { return $(this).text() === "Remove User Content"; }).attr('href'); | |
| if (href) { |
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
| application: <YOUR_APPSPOT.COM_NAME> | |
| version: 1 | |
| runtime: python27 | |
| api_version: 1 | |
| threadsafe: yes | |
| default_expiration: "30d" | |
| handlers: | |
| - url: /_xhr |
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
| if(!d3.chart) d3.chart = {}; | |
| d3.chart.brush = function() { | |
| var g; | |
| var data; | |
| var width = 600; | |
| var height = 30; | |
| var dispatch = d3.dispatch(chart, "filter"); | |
| function chart(container) { |