- Implemented initial inline variable preview MVP :
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
$(function () { | |
"use strict"; | |
// for better performance - to avoid searching in DOM | |
var content = $('#content'); | |
var input = $('#input'); | |
var status = $('#status'); | |
// my color assigned by the server | |
var myColor = false; |
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 Quora Truncate Answer | |
// @namespace http://dhyeythakore.net/ | |
// @version 0.1 | |
// @description Truncate button to shorten ans after clicking on more | |
// @author Dhyey Thakore | |
// @match https://www.quora.com/ | |
// @grant none | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js | |
// ==/UserScript== |