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
/* | |
* Mod6 sample 6.3.2015 | |
* Tasklist can be modified to configure the training you want to perform. | |
* The configurable options window sets how many profession slots you want to use for each profession. | |
* The level array below for each professions specifies the tasks you want to learn at each crafting level. | |
* Each craft slot will pick the first task that meets requirements. | |
* See http://pastebin.com/VaGntEha for Task Name Map. | |
* Some names above do not match, use below code to check: | |
* var tasks = client.dataModel.model.craftinglist['craft_' + profname].entries.filter(function(entry) { return entry.def && entry.def.displayname == taskname; }); tasks[0].def.name; | |
*/ |
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
var React = require('react/addons'); | |
var ReactIgnore = { | |
displayName: 'ReactIgnore', | |
shouldComponentUpdate (){ | |
return false; | |
}, | |
render (){ | |
return React.Children.only(this.props.children); | |
} |
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
gmon.out | |
v8.log |
NewerOlder